summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_scripts/management/commands/app_command.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-04-28 18:02:01 +0200
committerClaude Paroz <claude@2xlibre.net>2012-04-30 20:45:03 +0200
commit596cb9c7e287abbb98c64974fb4944d522cb6b5a (patch)
treee8ad5402dd233458b392d1822146bb1102ba74a6 /tests/regressiontests/admin_scripts/management/commands/app_command.py
parentfe43ad5707d116bb1729bc17a24ca16c90ae040d (diff)
Replaced print statement by print function (forward compatibility syntax).
Diffstat (limited to 'tests/regressiontests/admin_scripts/management/commands/app_command.py')
-rw-r--r--tests/regressiontests/admin_scripts/management/commands/app_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_scripts/management/commands/app_command.py b/tests/regressiontests/admin_scripts/management/commands/app_command.py
index 6adab6eafd..d26df12642 100644
--- a/tests/regressiontests/admin_scripts/management/commands/app_command.py
+++ b/tests/regressiontests/admin_scripts/management/commands/app_command.py
@@ -7,5 +7,5 @@ class Command(AppCommand):
args = '[appname ...]'
def handle_app(self, app, **options):
- print 'EXECUTE:AppCommand app=%s, options=%s' % (app, sorted(options.items()))
+ print('EXECUTE:AppCommand app=%s, options=%s' % (app, sorted(options.items())))