fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' into view-refactor
[redakcja.git]
/
lib
/
wlrepo
/
mercurial_backend
/
__init__.py
diff --git
a/lib/wlrepo/mercurial_backend/__init__.py
b/lib/wlrepo/mercurial_backend/__init__.py
index
2815881
..
2d0ce82
100644
(file)
--- a/
lib/wlrepo/mercurial_backend/__init__.py
+++ b/
lib/wlrepo/mercurial_backend/__init__.py
@@
-5,6
+5,7
@@
__date__ = "$2009-09-25 09:20:22$"
__doc__ = "Module documentation."
import wlrepo
__doc__ = "Module documentation."
import wlrepo
+from mercurial.node import nullid
class MercurialRevision(wlrepo.Revision):
class MercurialRevision(wlrepo.Revision):
@@
-20,7
+21,7
@@
class MercurialRevision(wlrepo.Revision):
idx = branchname.find("$doc:")
if(idx < 0):
raise ValueError("Revision %s is not a valid document revision." % changectx.hex());
idx = branchname.find("$doc:")
if(idx < 0):
raise ValueError("Revision %s is not a valid document revision." % changectx.hex());
- self._username = branchname[
0
:idx]
+ self._username = branchname[
6
:idx]
self._docname = branchname[idx+5:]
else:
raise ValueError("Revision %s is not a valid document revision." % changectx.hex());
self._docname = branchname[idx+5:]
else:
raise ValueError("Revision %s is not a valid document revision." % changectx.hex());
@@
-65,11
+66,11
@@
class MercurialRevision(wlrepo.Revision):
return (a.branch() == self._changectx.branch())
def merge_with(self, other, user, message):
return (a.branch() == self._changectx.branch())
def merge_with(self, other, user, message):
- lock = self._library.
_
lock(True)
+ lock = self._library.lock(True)
try:
self._library._checkout(self._changectx.node())
status = self._library._merge(other._changectx.node())
try:
self._library._checkout(self._changectx.node())
status = self._library._merge(other._changectx.node())
- if status.is
_
clean():
+ if status.isclean():
self._library._commit(user=user, message=message)
return (True, True)
else:
self._library._commit(user=user, message=message)
return (True, True)
else: