From dbe327909b048e0709b598fd60f02ef53b25a0ea Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 15 Nov 2008 18:53:45 -0500 Subject: [PATCH] Fixed '-' parsing bug for list --assigned option. --- becommands/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": -- 2.26.2