diff options
author | W. Trevor King <wking@drexel.edu> | 2010-03-19 02:18:13 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-03-19 02:18:13 -0400 |
commit | 273c0c9f66bb4365b8a4bf6d5ebf7a8f79a9b796 (patch) | |
tree | 8aef6584b2e2e4472cc655b0016e19148e31cfe2 /libbe/command | |
parent | 83cdb4afa89cb6ef5dc29561cb89ebd869336503 (diff) | |
download | bugseverywhere-273c0c9f66bb4365b8a4bf6d5ebf7a8f79a9b796.tar.gz |
Created a bug (wontfix) for Anton Batenev's default-EDITOR comments.
Also fixed a UserError typo in import_xml.py.
Diffstat (limited to 'libbe/command')
-rw-r--r-- | libbe/command/import_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/command/import_xml.py b/libbe/command/import_xml.py index 287d8b7..a890669 100644 --- a/libbe/command/import_xml.py +++ b/libbe/command/import_xml.py @@ -159,7 +159,7 @@ class Import_XML (libbe.command.Command): accept_comments = True if len(root_comments) > 0: if croot_bug == None: - raise UserError( + raise libbe.command.UserError( '--comment-root option is required for your root comments:\n%s' % '\n\n'.join([c.string() for c in root_comments])) try: |