diff options
Diffstat (limited to 'src/unittest/genini.py')
-rwxr-xr-x | src/unittest/genini.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/unittest/genini.py b/src/unittest/genini.py index 19e6442de..5a4f3454b 100755 --- a/src/unittest/genini.py +++ b/src/unittest/genini.py @@ -27,6 +27,8 @@ # # Authors: Nathan Binkert +from __future__ import print_function + import getopt, os, os.path, sys from os.path import join as joinpath, realpath @@ -71,4 +73,4 @@ for arg in args: if globals().has_key('root') and isinstance(root, Root): instantiate(root) else: - print "Instantiation skipped: no root object found." + print("Instantiation skipped: no root object found.") |