X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/2ac49695d699a49f70bc2a899889d723797c6e12..774fc1e90859cc68926f4357347b0624d43f746f:/stgit/git.py diff --git a/stgit/git.py b/stgit/git.py index 8523455..6b14a74 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -612,7 +612,7 @@ def checkout(files = None, tree_id = None, force = False): if not files: files = [] - if tree_id and __run('git-read-tree -m', [tree_id]) != 0: + if tree_id and __run('git-read-tree', [tree_id]) != 0: raise GitException, 'Failed git-read-tree -m %s' % tree_id checkout_cmd = 'git-checkout-index -q -u'