mercurial/commands.py
changeset 2268 6c9305fbebaf
parent 2267 d812d91c5a84
child 2272 e9a0ed9ed4d9
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -789,7 +789,7 @@ def backout(ui, repo, rev, **opts):
     commit_opts['addremove'] = False
     if not commit_opts['message'] and not commit_opts['logfile']:
         commit_opts['message'] = _("Backed out changeset %s") % (hex(node))
-        commit_opts['force_editor'] = True;
+        commit_opts['force_editor'] = True
     commit(ui, repo, **commit_opts)
     def nice(node):
         return '%d:%s' % (repo.changelog.rev(node), short(node))
@@ -988,12 +988,8 @@ def commit(ui, repo, *pats, **opts):
     else:
         files = []
     try:
-        try:
-            force_editor = opts['force_editor']
-        except KeyError:
-            force_editor = False
         repo.commit(files, message, opts['user'], opts['date'], match,
-            force_editor=force_editor)
+                    force_editor=opts.get('force_editor'))
     except ValueError, inst:
         raise util.Abort(str(inst))