aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/remove.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2024-01-18 19:09:58 +0100
committerMatěj Cepl <mcepl@cepl.eu>2024-01-18 19:09:58 +0100
commitcc7362d28bd9c43cb6839809f86e59874f2fe458 (patch)
tree1053748f5890c769d1e99806bc0c8bcffca6f0fe /libbe/command/remove.py
parent003bd13629d9db2f14156f97b74a4672e9ecdf77 (diff)
downloadbugseverywhere-cc7362d28bd9c43cb6839809f86e59874f2fe458.tar.gz
2to3 conversion of the repo.
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):