aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/utility.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-11-24 07:47:06 -0500
committerW. Trevor King <wking@drexel.edu>2008-11-24 07:47:06 -0500
commit5fd5bc89a2ec270d3e0b01f583012eaaf7750693 (patch)
treebf8b9e1951086bdaf1de2523c2fd67fbe06b697e /libbe/utility.py
parentd248dbca39e1e8a26a5aa9d39b28038690a406a0 (diff)
downloadbugseverywhere-5fd5bc89a2ec270d3e0b01f583012eaaf7750693.tar.gz
Added Bug.comments(), BugDir.has_bug() & cleaned up diff.diff().
+ some other minor fixes and cleanups.
Diffstat (limited to 'libbe/utility.py')
-rw-r--r--libbe/utility.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/utility.py b/libbe/utility.py
index 1168580..2c77fcf 100644
--- a/libbe/utility.py
+++ b/libbe/utility.py
@@ -104,10 +104,10 @@ def editor_string(comment=None):
CantFindEditor: Can't find editor to get string from
>>> os.environ["EDITOR"] = "echo bar > "
>>> editor_string()
- 'bar\\n'
+ u'bar\\n'
>>> os.environ["VISUAL"] = "echo baz > "
>>> editor_string()
- 'baz\\n'
+ u'baz\\n'
>>> del os.environ["EDITOR"]
>>> del os.environ["VISUAL"]
"""