X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/588a7414ee52328525dfcb514e580da877e4ff3c..afddd62b52567fc1834e658b968f5a62334ea63c:/stgit/commands/resolved.py diff --git a/stgit/commands/resolved.py b/stgit/commands/resolved.py index 2ce7ec3..eba778d 100644 --- a/stgit/commands/resolved.py +++ b/stgit/commands/resolved.py @@ -22,7 +22,6 @@ from stgit.commands.common import * from stgit.utils import * from stgit import argparse, stack, git, basedir from stgit.config import config, file_extensions -from stgit.gitmergeonefile import interactive_merge help = 'Mark a file conflict as solved' kind = 'wc' @@ -78,8 +77,6 @@ def func(parser, options, args): # resolved if options.interactive: - for filename in files: - interactive_merge(filename) - git.resolved([filename]) + git.mergetool(files) else: git.resolved(files, options.reset)