Merge 352e31aa33
into 574bb1887b
This commit is contained in:
commit
d942c31ca7
|
@ -86,3 +86,8 @@ class Repository(object):
|
|||
get_func=branch_name_from_config_file,
|
||||
create_watcher=self.create_watcher,
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def ignore_event(path, name):
|
||||
# Ignore temporary files created during mercurial commands
|
||||
return path.endswith('.hg') and name.startswith(b'tmp')
|
||||
|
|
Loading…
Reference in New Issue