diff options
Diffstat (limited to 'test/farm/annotate/src/a/a.py')
-rw-r--r-- | test/farm/annotate/src/a/a.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/farm/annotate/src/a/a.py b/test/farm/annotate/src/a/a.py index 825ce1b..c2583d1 100644 --- a/test/farm/annotate/src/a/a.py +++ b/test/farm/annotate/src/a/a.py @@ -1,5 +1,5 @@ def a(x): if x == 1: - print "x is 1" + print("x is 1") else: - print "x is not 1" + print("x is not 1") |