diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-19 19:47:00 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-19 19:47:00 -0500 |
commit | f3d13ed7f24dbf24ce431e862dac5ce80f093521 (patch) | |
tree | fc2b6c227cdfbf3908e4d085abf22d67bd758774 /becommands | |
parent | 0e57e0c247f7499f5d54e135d116c2a30a74146e (diff) | |
download | bugseverywhere-f3d13ed7f24dbf24ce431e862dac5ce80f093521.tar.gz |
names.creator() replaced by rcs.get_user_id().
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/list.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/list.py b/becommands/list.py index 8fd830b..d43b573 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """List bugs""" -from libbe import cmdutil, names +from libbe import cmdutil from libbe.bug import cmp_full, severity_values, status_values, \ active_status_values, inactive_status_values import os @@ -73,7 +73,7 @@ def execute(args): assigned = "all" for i in range(len(assigned)): if assigned[i] == '-': - assigned[i] = names.creator() + assigned[i] = tree.rcs.get_user_id() # select target if options.target != None: if options.target == "all": |