diff -r fcbc66b5da6a -r f1b06a8aad42 mercurial/commands.py --- a/mercurial/commands.py Wed Nov 26 16:13:38 2014 -0500 +++ b/mercurial/commands.py Mon Nov 24 22:27:49 2014 -0500 @@ -236,7 +236,7 @@ if sim < 0 or sim > 100: raise util.Abort(_('similarity must be between 0 and 100')) matcher = scmutil.match(repo[None], pats, opts) - return scmutil.addremove(repo, matcher, opts, similarity=sim / 100.0) + return scmutil.addremove(repo, matcher, "", opts, similarity=sim / 100.0) @command('^annotate|blame', [('r', 'rev', '', _('annotate the specified revision'), _('REV')),