summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/repoman b/bin/repoman
index 921861612..60e9c7239 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -649,7 +649,7 @@ else:
xmllint_capable=True
if options.mode == 'commit' and isCvs:
- utilties.detect_vcs_conflicts(options, vcs="cvs")
+ utilities.detect_vcs_conflicts(options, vcs="cvs")
if options.mode == "manifest":
pass
@@ -1592,10 +1592,10 @@ else:
try:
editor = os.environ.get("EDITOR")
if editor and utilities.editor_is_executable(editor):
- commitmessage = utilties.get_commit_message_with_editor(
+ commitmessage = utilities.get_commit_message_with_editor(
editor, message=qa_output)
else:
- commitmessage = utilties.get_commit_message_with_stdin()
+ commitmessage = utilities.get_commit_message_with_stdin()
except KeyboardInterrupt:
exithandler()
if not commitmessage or not commitmessage.strip():