summaryrefslogtreecommitdiff
path: root/test/baseline/feat-option_py.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/baseline/feat-option_py.test')
-rw-r--r--test/baseline/feat-option_py.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/baseline/feat-option_py.test b/test/baseline/feat-option_py.test
index 1b2a0c79..77a75660 100644
--- a/test/baseline/feat-option_py.test
+++ b/test/baseline/feat-option_py.test
@@ -1,9 +1,9 @@
python
def option_pyfirst(context):
- print "In --pyfirst (from %s)" % context
+ print("In --pyfirst (from %s)" % context)
def option_pysecond(context, val):
- print "In --pysecond=%s (from %s)" % (val, context)
+ print("In --pysecond=%s (from %s)" % (val, context))
--pyfirst
--pysecond Hey