Skip to content
Snippets Groups Projects
Commit a24c2f90a3dd authored by durin42's avatar durin42
Browse files

Merge obsolete marker fix.

No related branches found
No related tags found
No related merge requests found
......@@ -151,6 +151,13 @@
def __nonzero__(self):
return True
def phase(self):
try:
from mercurial import phases
return phases.draft
except ImportError:
return 1
class overlayrevlog(object):
def __init__(self, repo, base):
self.repo = repo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment