X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_lib%2Fflad%2Ftest%2Ftest6.py;h=7e8b1337ba4d9c91ab6c26df78da87a219f1ea48;hb=fb3af94919a9ee18ba1c35f927f19837f057fa1f;hp=ae1131b92b20794a35241e263c3555f1fce1a5da;hpb=9a523766e02fc3c5d1df4550385a604dca8e6e80;p=m_lib.git diff --git a/m_lib/flad/test/test6.py b/m_lib/flad/test/test6.py index ae1131b..7e8b133 100755 --- a/m_lib/flad/test/test6.py +++ b/m_lib/flad/test/test6.py @@ -1,14 +1,15 @@ #! /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", ["Type", "Name"]) conf.store_to_file("test6.out") - print "Ok" + print("Ok") if __name__ == "__main__":