diff options
author | W. Trevor King <wking@drexel.edu> | 2011-04-16 13:17:45 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2011-04-16 13:17:45 -0400 |
commit | 6772ae4d0de720c79686e4107c67eeb72f62bbb5 (patch) | |
tree | b5ef348ea7bb6a256a5f3b87950f62306e780838 /libbe/bug.py | |
parent | 1b5fadebf63f5c3914467084bad94dbdd02cf832 (diff) | |
download | bugseverywhere-6772ae4d0de720c79686e4107c67eeb72f62bbb5.tar.gz |
Fix doctest after Valtteri's import-xml patch.
Diffstat (limited to 'libbe/bug.py')
-rw-r--r-- | libbe/bug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py index 122c81a..adccf21 100644 --- a/libbe/bug.py +++ b/libbe/bug.py @@ -359,7 +359,7 @@ class Bug (settings_object.SavedSettingsObject): >>> bugB.xml(show_comments=True) == xml True >>> bugB.explicit_attrs # doctest: +NORMALIZE_WHITESPACE - ['severity', 'status', 'creator', 'created', 'summary'] + ['severity', 'status', 'creator', 'time', 'summary'] >>> len(list(bugB.comments())) 3 """ |