aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/status.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/command/status.py')
-rw-r--r--libbe/command/status.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/status.py b/libbe/command/status.py
index 38aa541..7cf5858 100644
--- a/libbe/command/status.py
+++ b/libbe/command/status.py
@@ -77,12 +77,12 @@ class Status (libbe.command.Command):
active_statuses = []
for status in libbe.bug.active_status_values :
description = libbe.bug.status_description[status]
- s = "%*s : %s" % (longest_status_len, status, description)
+ s = '%*s : %s' % (longest_status_len, status, description)
active_statuses.append(s)
inactive_statuses = []
for status in libbe.bug.inactive_status_values :
description = libbe.bug.status_description[status]
- s = "%*s : %s" % (longest_status_len, status, description)
+ s = '%*s : %s' % (longest_status_len, status, description)
inactive_statuses.append(s)
ret = """
Show or change a bug's status.