From 9ebf4d09e746be4fb800c9aa436790f0c38b263b Mon Sep 17 00:00:00 2001 From: Derek Ruths Date: Thu, 9 Jun 2016 12:08:58 -0700 Subject: [PATCH] Fixed incompabitiblity in test with python 3 --- arghandler/tests/subcmds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arghandler/tests/subcmds.py b/arghandler/tests/subcmds.py index 4a2ad56..71365a0 100644 --- a/arghandler/tests/subcmds.py +++ b/arghandler/tests/subcmds.py @@ -12,7 +12,7 @@ def test_reported(self): @subcmd('foobar', help='Does foobar') def cmd_foobar(parser, context, args): - print 'foobar' + pass handler = ArgumentHandler() handler.run(['foobar','hello','world'])