diff options
author | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-06 22:04:49 -0400 |
---|---|---|
committer | Aaron Bentley <aaron.bentley@utoronto.ca> | 2006-04-06 22:04:49 -0400 |
commit | 64794faedd01c04cbb56ccbbe299d515d4edeefe (patch) | |
tree | 26012609c31446f7d9c8dc12023400b7b2e5f6fe /becommands/assign.py | |
parent | b213e7681b50ed6651a4f67c6ffe06da9657a61e (diff) | |
parent | 6691e2276112b3aad603a7b14ff80b53f77e03e3 (diff) | |
download | bugseverywhere-64794faedd01c04cbb56ccbbe299d515d4edeefe.tar.gz |
Merge test case fixes without trailing commas
Diffstat (limited to 'becommands/assign.py')
-rw-r--r-- | becommands/assign.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/assign.py b/becommands/assign.py index d7c2fca..38ece52 100644 --- a/becommands/assign.py +++ b/becommands/assign.py @@ -26,7 +26,7 @@ def execute(args): >>> os.chdir(dir.dir) >>> dir.get_bug("a").assigned is None True - >>> execute(["a",]) + >>> execute(["a"]) >>> dir.get_bug("a").assigned == names.creator() True >>> execute(["a", "someone"]) |