aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/editor.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-07-19 10:48:12 -0400
committerW. Trevor King <wking@drexel.edu>2009-07-19 10:48:12 -0400
commitb3ce47285a66a35904e5e50636ce471ecb4ce29d (patch)
tree5adefc61f75a30cd31a796d4bc8fc2470e3bdb23 /libbe/editor.py
parent0baf6034dba2178f4141d3fe87d0d41061946299 (diff)
downloadbugseverywhere-b3ce47285a66a35904e5e50636ce471ecb4ce29d.tar.gz
Added becommands/commit.py and minor fixes.
Now we can commit changes from the command line with a unified interface. The interface is much less flexible than using your particular version control system's commit command directly, so this command is mostly intended for user-interfaces and other tools that don't want to be bothered with the extra flexibility. Normalized spacing in rcs.RCS.commit to produce: summary <BLANKLINE> body <TRAILING-ENDLINE> messages regardless of the input string format. Also fixed a "--complete" handline bug in cmdutil, and some minor docstring typos in libbe.rcs and .editor.
Diffstat (limited to 'libbe/editor.py')
-rw-r--r--libbe/editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/editor.py b/libbe/editor.py
index 5e3f9a6..93144b8 100644
--- a/libbe/editor.py
+++ b/libbe/editor.py
@@ -31,7 +31,7 @@ class CantFindEditor(Exception):
Exception.__init__(self, "Can't find editor to get string from")
def editor_string(comment=None, encoding=None):
- """Invokes the editor, and returns the user_produced text as a string
+ """Invokes the editor, and returns the user-produced text as a string
>>> if "EDITOR" in os.environ:
... del os.environ["EDITOR"]