diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/plugin/repa_plugin/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/plugin/repa_plugin/plugin.py b/examples/plugin/repa_plugin/plugin.py index 602776b..7403fc0 100644 --- a/examples/plugin/repa_plugin/plugin.py +++ b/examples/plugin/repa_plugin/plugin.py @@ -47,8 +47,8 @@ class Test(object): def run(self, argv): """Command line entry point.""" - print '%s: Not implemented yet' % self.help - print 'paremeter: %s' % argv.opt + print('%s: Not implemented yet' % self.help) + print('paremeter: %s' % argv.opt) if __name__ == '__main__': |