diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-23 14:34:51 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-23 14:34:51 +0000 |
commit | 43d8c19ae299bab2cba0f29b560396ba6d8bd1a5 (patch) | |
tree | 1b8edf5f70e875f300b9157ef1c6b503eceae9b9 /becommands | |
parent | f9e8f7bb4360d473073b59e4dcb9e1a38d7e0d56 (diff) | |
download | bugseverywhere-43d8c19ae299bab2cba0f29b560396ba6d8bd1a5.tar.gz |
Moved FileString and get_file() into utility.py
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/list.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/becommands/list.py b/becommands/list.py index 7e91bb3..4b0fa1d 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -1,6 +1,5 @@ """List bugs""" from libbe import bugdir, cmdutil, names -from libbe.mapfile import FileString import os def execute(args): options, args = get_parser().parse_args(args) @@ -98,6 +97,4 @@ closed bugs assigned to you. """ def help(): - fs = FileString() - get_parser().print_help(fs) - return fs.str + longhelp + return get_parser().help_str() + longhelp |