From: W. Trevor King Date: Sat, 15 Nov 2008 23:53:45 +0000 (-0500) Subject: Fixed '-' parsing bug for list --assigned option. X-Git-Tag: 1.0.0~158 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dbe327909b048e0709b598fd60f02ef53b25a0ea;p=be.git Fixed '-' parsing bug for list --assigned option. --- diff --git a/becommands/list.py b/becommands/list.py index 6cd7826..4514039 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -71,7 +71,7 @@ def execute(args): assigned = "all" for i in range(len(assigned)): if assigned[i] == '-': - assigned[i] == names.creator() + assigned[i] = names.creator() # select target if options.target != None: if options.target == "all":