diff options
Diffstat (limited to 'becommands/open.py')
-rw-r--r-- | becommands/open.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/open.py b/becommands/open.py index 7923091..19b8910 100644 --- a/becommands/open.py +++ b/becommands/open.py @@ -23,10 +23,10 @@ def execute(args): >>> dir = tests.simple_bug_dir() >>> os.chdir(dir.dir) >>> dir.get_bug("b").status - 'closed' + u'closed' >>> execute(("b",)) >>> dir.get_bug("b").status - 'open' + u'open' >>> tests.clean_up() """ assert(len(args) == 1) |