##// END OF EJS Templates
patchbomb: make variable name for publicurl always be publicurl
Augie Fackler -
r32824:d3b2d458 default
parent child Browse files
Show More
@@ -112,10 +112,10 b' def _addpullheader(seq, ctx):'
112 # experimental config: patchbomb.publicurl
112 # experimental config: patchbomb.publicurl
113 # waiting for some logic that check that the changeset are available on the
113 # waiting for some logic that check that the changeset are available on the
114 # destination before patchbombing anything.
114 # destination before patchbombing anything.
115 pullurl = repo.ui.config('patchbomb', 'publicurl')
115 publicurl = repo.ui.config('patchbomb', 'publicurl')
116 if pullurl is not None:
116 if publicurl is not None:
117 return ('Available At %s\n'
117 return ('Available At %s\n'
118 '# hg pull %s -r %s' % (pullurl, pullurl, ctx))
118 '# hg pull %s -r %s' % (publicurl, publicurl, ctx))
119 return None
119 return None
120
120
121 def uisetup(ui):
121 def uisetup(ui):
General Comments 0
You need to be logged in to leave comments. Login now