diff --git a/hggit/hgrepo.py b/hggit/hgrepo.py
index c1ac1c34378f791b3791098b48d8e6ea739b9240_aGdnaXQvaGdyZXBvLnB5..cb1f40fb27fb8eec1f22f98033c4b18770d20141_aGdnaXQvaGdyZXBvLnB5 100644
--- a/hggit/hgrepo.py
+++ b/hggit/hgrepo.py
@@ -16,7 +16,7 @@
                 return super(hgrepo, self).pull(remote, heads, force)
 
         # TODO figure out something useful to do with the newbranch param
-        def push(self, remote, force=False, revs=None, newbranch=None):
+        def push(self, remote, force=False, revs=None, newbranch=False):
             if isinstance(remote, gitrepo):
                 return self.githandler.push(remote.path, revs, force)
             else: #pragma: no cover
@@ -20,12 +20,7 @@
             if isinstance(remote, gitrepo):
                 return self.githandler.push(remote.path, revs, force)
             else: #pragma: no cover
-                # newbranch was added in 1.6
-                if newbranch is None:
-                    return super(hgrepo, self).push(remote, force, revs)
-                else:
-                    return super(hgrepo, self).push(remote, force, revs,
-                                                    newbranch)
+                return super(hgrepo, self).push(remote, force, revs, newbranch)
 
         def findoutgoing(self, remote, base=None, heads=None, force=False):
             if isinstance(remote, gitrepo):