summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2011-01-10 15:10:04 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2011-01-10 15:10:04 +0100
commit6f55776a998c776654728a0dd468bd48325da482 (patch)
tree43a7ac3455cfee9e5c4c75136dc3515f91f592fa
parent3365feb6650f3667ca656484da0971efd62bdbe7 (diff)
downloadlogilab-common-6f55776a998c776654728a0dd468bd48325da482.tar.gz
hopefuly last dumb error (for this time)
-rw-r--r--hg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hg.py b/hg.py
index 196022e..2c981b0 100644
--- a/hg.py
+++ b/hg.py
@@ -117,7 +117,7 @@ def incoming(wdrepo, masterrepo):
cg = masterrepo.changegroupsubset(incoming, revs, 'incoming')
fname = changegroup.writebundle(cg, None, "HG10UN")
# use the created uncompressed bundlerepo
- masterrepo = bundlerepo.bundlerepository(ui, repo.root, fname)
+ masterrepo = bundlerepo.bundlerepository(wdrepo.ui, wdrepo.root, fname)
return masterrepo.changelog.nodesbetween(incoming, revs)[0]
def outgoing(wdrepo, masterrepo):