X-Git-Url: https://git.phdru.name/?p=m_lib.git;a=blobdiff_plain;f=m_lib%2Fflad%2Ftest%2Ftest4.py;h=c42d7826804415ebddeac5cecf6d79233773b971;hp=8103ed9f38e42eb9edce7a9a6fed9032edbf2d54;hb=fb3af94919a9ee18ba1c35f927f19837f057fa1f;hpb=9a523766e02fc3c5d1df4550385a604dca8e6e80 diff --git a/m_lib/flad/test/test4.py b/m_lib/flad/test/test4.py index 8103ed9..c42d782 100755 --- a/m_lib/flad/test/test4.py +++ b/m_lib/flad/test/test4.py @@ -1,15 +1,16 @@ #! /usr/bin/env python +from __future__ import print_function from m_lib.flad import fladc def test(): - print "Test:", + print("Test:", end=' ') conf = fladc.load_file("test.cfg") - print "Ok" + print("Ok") - print "Property 'Type' is", conf["Type"] + print("Property 'Type' is", conf["Type"]) if __name__ == "__main__":