Found a few that were actually "fixed" and one that I reopened.
Perhaps we should add a "merged" status to the default, so that the
merged bugs don't clutter up the closed bugs category...
+Content-type: text/plain
-
-Content-type=text/plain
-
-
-
-
-
-
-Date=Fri, 18 Apr 2008 11:21:03 +0000
-
-
-
-
-
-
-From=benf
+Date: Fri, 18 Apr 2008 11:21:03 +0000
+From: benf
--- /dev/null
+We could add this functionality to update_copyright.sh
--- /dev/null
+Content-type: text/plain
+
+
+Date: Sat, 11 Jul 2009 14:08:45 +0000
+
+
+From: W. Trevor King <wking@drexel.edu>
+
+
+In-reply-to: 4be73baf-e46b-4acb-a58e-4719e57c550b
+
severity: minor
-status: closed
+status: open
summary: Address is outdated for FSF offices
severity: minor
-status: closed
+status: fixed
summary: auto-add files to revision control
+Content-type: text/plain
+Date: Mon, 16 Jul 2007 15:23:47 +0000
-Content-type=text/plain
+From: abentley
-
-
-
-Date=Mon, 16 Jul 2007 15:23:47 +0000
-
-
-
-
-
-
-From=abentley
-
-
-
-
-
-
-In-reply-to=e173c09a-1b3e-4d8a-a86a-6b8c94a76247
-
-
+In-reply-to: e173c09a-1b3e-4d8a-a86a-6b8c94a76247
+Content-type: text/plain
-
-Content-type=text/plain
-
-
-
-
-
-
-Date=Sun, 15 Jul 2007 13:34:52 +0000
-
-
-
-
-
-
-From=jelmer
+Date: Sun, 15 Jul 2007 13:34:52 +0000
+From: jelmer
severity: minor
-status: closed
+status: fixed
summary: should check not just EDITOR but also VISUAL.
+Content-type: text/plain
-
-Content-type=text/plain
-
-
-
-
-
-
-Date=Thu, 24 Mar 2005 17:04:47 +0000
-
-
-
-
-
-
-From=abentley
+Date: Thu, 24 Mar 2005 17:04:47 +0000
+From: abentley
+Content-type: text/plain
-
-Content-type=text/plain
-
-
-
-
-
-
-Date=Thu, 24 Mar 2005 13:05:13 +0000
-
-
-
-
-
-
-From=abentley
+Date: Thu, 24 Mar 2005 13:05:13 +0000
+From: abentley
severity: serious
-status: closed
+status: fixed
summary: Add test cases
severity: minor
-status: closed
+status: fixed
summary: no tests for missing $EDITOR
elif len(args) == 1:
print _value_string(bd, args[0])
else:
- if args[1] != "none":
+ if args[1] == "none":
+ del bd.settings[args[0]]
+ else:
if args[0] not in bd.settings_properties:
msg = "Invalid setting %s\n" % args[0]
msg += 'Allowed settings:\n '
raise cmdutil.UserError(msg)
old_setting = bd.settings.get(args[0])
setattr(bd, args[0], args[1])
- else:
- del bd.settings[args[0]]
bd.save()
def get_parser():