From cc7362d28bd9c43cb6839809f86e59874f2fe458 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Thu, 18 Jan 2024 19:09:58 +0100 Subject: 2to3 conversion of the repo. --- libbe/command/remove.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbe/command/remove.py') 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): -- cgit