aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/remove.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/command/remove.py')
-rw-r--r--libbe/command/remove.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/remove.py b/libbe/command/remove.py
index 08eb4d1..2ca2699 100644
--- a/libbe/command/remove.py
+++ b/libbe/command/remove.py
@@ -71,9 +71,9 @@ class Remove (libbe.command.Command):
user_ids.append(bug.id.user())
bugdir.remove_bug(bug)
if len(user_ids) == 1:
- print >> self.stdout, 'Removed bug %s' % user_ids[0]
+ print('Removed bug %s' % user_ids[0], file=self.stdout)
else:
- print >> self.stdout, 'Removed bugs %s' % ', '.join(user_ids)
+ print('Removed bugs %s' % ', '.join(user_ids), file=self.stdout)
return 0
def _long_help(self):