It seems I cannot comment in trac, so I'll do it here instead.
I had the exact opposite problem to Ticket #55. Tailor would happily
import a local repository, but failed with the same error against a
pserver. Apparently, the pserver said "CVS rlog:" and CVS against the
local repository said "cvs rlog:". I suspect that this has nothing to do
with local and remote repositories but rather with different CVS versions.
I solved it with the following patch:
/Mattias
[EMAIL PROTECTED]:~$ diff -u cvs.py~ cvs.py
--- cvs.py~ 2007-04-25 19:31:38.000000000 +0200
+++ cvs.py 2007-10-02 15:24:57.000000000 +0200
@@ -238,7 +238,7 @@
l = self.__lookahead.pop(0)
else:
l = self.cvslog.readline()
- while l.startswith('cvs rlog: Logging '):
+ while l.lower().startswith('cvs rlog: Logging '.lower()):
currentdir = l[18:-1]
# If the directory starts with the module name, keep
# just the remaining part
_______________________________________________
Tailor mailing list
[email protected]
http://lists.zooko.com/mailman/listinfo/tailor