# HG changeset patch # User Marcin Kuzminski # Date 2018-03-01 00:29:07 # Node ID f24cf18d7d3ffa71086097cd18cc98578bf869a9 # Parent 6b1beb45f69ac76ad6d5c13ae468c905476ca658 mercurial: fix hgpatches for full hg 4.4.2 compatability. - fixes #5444 diff --git a/vcsserver/hgpatches.py b/vcsserver/hgpatches.py --- a/vcsserver/hgpatches.py +++ b/vcsserver/hgpatches.py @@ -87,7 +87,7 @@ def patch_subrepo_type_mapping(): """ return True - def dirty(self, ignoreupdate=False): + def dirty(self, ignoreupdate=False, missing=False): """returns true if the dirstate of the subrepo is dirty or does not match current stored state. If ignoreupdate is true, only check whether the subrepo has uncommitted changes in its dirstate.