diff options
author | W. Trevor King <wking@drexel.edu> | 2009-11-28 20:24:19 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-11-28 20:24:19 -0500 |
commit | c90ed61e7deb594edf3707850f2d3a87601a581b (patch) | |
tree | c11a3779a02bd2c24e6c2c22f278806f2c84e0ea /becommands | |
parent | 3e050db00d2ffa2c011efc4d9b47d8edeac5c43c (diff) | |
download | bugseverywhere-c90ed61e7deb594edf3707850f2d3a87601a581b.tar.gz |
BugDir.list_uuids() -> BugDir.uuids()
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/comment.py | 2 | ||||
-rw-r--r-- | becommands/target.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/becommands/comment.py b/becommands/comment.py index 8e899ce..fbc994f 100644 --- a/becommands/comment.py +++ b/becommands/comment.py @@ -145,7 +145,7 @@ def complete(options, args, parser): bd = bugdir.BugDir(from_disk=True, manipulate_encodings=False) bugs = [] - for uuid in bd.list_uuids(): + for uuid in bd.uuids(): if uuid.startswith(partial): bug = bd.bug_from_uuid(uuid) if bug.active == True: 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 |