fix typo for .conflict files

This commit is contained in:
meejah 2016-04-11 22:22:11 -07:00 committed by Brian Warner
parent c978db4c90
commit 575c00113a

View File

@ -11,7 +11,7 @@ def magic2path(path):
return re.sub(ur'@[_@]', lambda m: {u'@_': u'/', u'@@': u'@'}[m.group(0)], path)
IGNORE_SUFFIXES = [u'.backup', u'.tmp', u'.conflicted']
IGNORE_SUFFIXES = [u'.backup', u'.tmp', u'.conflict']
IGNORE_PREFIXES = [u'.']
def should_ignore_file(path_u):