Rev 116: Cloning into a smart server should not error - unwrap the target appropriately. in http://bazaar.launchpad.net/~bzr-loom-devs/bzr-loom/trunk/
Robert Collins
robertc at robertcollins.net
Wed Jun 23 09:42:55 BST 2010
At http://bazaar.launchpad.net/~bzr-loom-devs/bzr-loom/trunk/
------------------------------------------------------------
revno: 116
revision-id: robertc at robertcollins.net-20100623084254-fcd8yagffxhdz8z4
parent: robertc at robertcollins.net-20100618044452-2hnpj2opedjt8iy9
committer: Robert Collins <robertc at robertcollins.net>
branch nick: trunk
timestamp: Wed 2010-06-23 20:42:54 +1200
message:
Cloning into a smart server should not error - unwrap the target appropriately.
=== modified file 'branch.py'
--- a/branch.py 2010-06-18 04:44:52 +0000
+++ b/branch.py 2010-06-23 08:42:54 +0000
@@ -958,7 +958,8 @@
else:
# no threads yet, be a normal branch.
self.source._synchronize_history(self.target, revision_id)
- self.target._set_last_loom(state)
+ target_loom = self.unwrap_branch(self.target)
+ target_loom._set_last_loom(state)
except NotALoom:
self.source._synchronize_history(self.target, revision_id)
try:
More information about the bazaar-commits
mailing list