aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/open.py
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-04 19:52:25 -0400
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-04 19:52:25 -0400
commit5d75c1f4b7362ef184276f781346e69c34bd4874 (patch)
tree4d9444c748d0f7520481b23216a92723bcba12ce /becommands/open.py
parent2225a378d84f77c3512ee407af1aeb355b463084 (diff)
downloadbugseverywhere-5d75c1f4b7362ef184276f781346e69c34bd4874.tar.gz
Fixed tests to use lists, so that optparse can mangle them
Diffstat (limited to 'becommands/open.py')
-rw-r--r--becommands/open.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/open.py b/becommands/open.py
index 89067f8..d93eb61 100644
--- a/becommands/open.py
+++ b/becommands/open.py
@@ -24,7 +24,7 @@ def execute(args):
>>> os.chdir(dir.dir)
>>> dir.get_bug("b").status
u'closed'
- >>> execute(("b",))
+ >>> execute(["b",])
>>> dir.get_bug("b").status
u'open'
>>> tests.clean_up()