From 774bc3520630be6992660a52a7a49d3c9d3b7de9 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Tue, 16 Feb 2016 10:54:44 +0100 Subject: [PATCH] Parentheses on print statements --- pillar/manage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pillar/manage.py b/pillar/manage.py index 6864ffdf..fcb35662 100644 --- a/pillar/manage.py +++ b/pillar/manage.py @@ -62,8 +62,8 @@ def put_item(collection, item): # print type(item_id) p = put_internal(collection, item, **{'_id': item_id}) if p[0]['_status'] == 'ERR': - print p - print item + print(p) + print(item) @manager.command