diff options
author | W. Trevor King <wking@drexel.edu> | 2009-11-30 06:29:48 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-11-30 06:29:48 -0500 |
commit | c4a9b465fb512fdfa2d43ece22c786b021d8c2ce (patch) | |
tree | c92629e416c42c813f45ee6ca69f5197873e27cf /becommands/target.py | |
parent | f3de7e1a6d07b5488fd3c9e01caba53216e612d2 (diff) | |
parent | 13784e6067b652e4fe08e488fdc4baabc37f24ef (diff) | |
download | bugseverywhere-c4a9b465fb512fdfa2d43ece22c786b021d8c2ce.tar.gz |
Merged completed be.email-bugs branch.
Highlights:
* import-xml now works as advertized in its longhelp string
* new methods Bug.merge() and Comment.merge()
* comment.list_to_root() is now Bug.add_comments()
* BugDir.list_uuids() is now BugDir.uuids()
* Bug.from_xml() now imports comments :p
* test.py uses unittest.TestSuite 'suite' in becommands, if present.
Diffstat (limited to 'becommands/target.py')
-rw-r--r-- | becommands/target.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/target.py b/becommands/target.py index efb2479..9a202b1 100644 --- a/becommands/target.py +++ b/becommands/target.py @@ -50,7 +50,7 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False): bd = bugdir.BugDir(from_disk=True, manipulate_encodings=manipulate_encodings) if options.list: - ts = set([bd.bug_from_uuid(bug).target for bug in bd.list_uuids()]) + ts = set([bd.bug_from_uuid(bug).target for bug in bd.uuids()]) for target in sorted(ts): if target and isinstance(target,str): print target |