If an "svn info" field is empty, one might see a line like
'Last Changed Author:', which makes split(": ") choke.
Index: svnmerge.py
===================================================================
--- svnmerge.py (revision 2755)
+++ svnmerge.py (working copy)
@@ -778,7 +778,7 @@
L = L.strip()
if not L:
continue
- key, value = L.split(": ", 1)
+ key, value = L.split(":", 1)
info[key] = value.strip()
_cache_svninfo[target] = info
return info
_______________________________________________
Svnmerge mailing list
[email protected]
http://www.orcaware.com/mailman/listinfo/svnmerge