mirror of
https://github.com/frej/fast-export.git
synced 2026-01-31 10:29:03 +01:00
Avoid showing a warning when the mercurial repository has obsolete markers.
This commit is contained in:
committed by
Frej Drejhammar
parent
ff1c885305
commit
b54046d3aa
@@ -35,7 +35,9 @@ def setup_repo(url):
|
||||
except TypeError:
|
||||
myui=ui.ui()
|
||||
myui.setconfig('ui', 'interactive', 'off')
|
||||
return myui,hg.repository(myui,url)
|
||||
# Avoids a warning when the repository has obsolete markers
|
||||
myui.setconfig('experimental', 'evolution.createmarkers', True)
|
||||
return myui,hg.repository(myui,url).unfiltered()
|
||||
|
||||
def fixup_user(user,authors):
|
||||
user=user.strip("\"")
|
||||
|
||||
Reference in New Issue
Block a user