hgext/patchbomb.py
changeset 32825 16ff5c6066a6
parent 32824 d3b2d4587e73
child 32826 3abba5bc3454
--- a/hgext/patchbomb.py	Tue Jun 13 16:30:11 2017 -0400
+++ b/hgext/patchbomb.py	Tue Jun 13 16:30:50 2017 -0400
@@ -113,7 +113,7 @@
     # waiting for some logic that check that the changeset are available on the
     # destination before patchbombing anything.
     publicurl = repo.ui.config('patchbomb', 'publicurl')
-    if publicurl is not None:
+    if publicurl:
         return ('Available At %s\n'
                 '#              hg pull %s -r %s' % (publicurl, publicurl, ctx))
     return None
@@ -588,7 +588,7 @@
 
     # check if revision exist on the public destination
     publicurl = repo.ui.config('patchbomb', 'publicurl')
-    if publicurl is not None:
+    if publicurl:
         repo.ui.debug('checking that revision exist in the public repo')
         try:
             publicpeer = hg.peer(repo, {}, publicurl)