##// END OF EJS Templates
Merge with crew
Matt Mackall -
r4114:d5011e34 merge default
parent child Browse files
Show More
@@ -85,7 +85,7 b' class convert_cvs:'
85 os.chdir(self.path)
85 os.chdir(self.path)
86 id = None
86 id = None
87 state = 0
87 state = 0
88 for l in os.popen("cvsps -A"):
88 for l in os.popen("cvsps -A -u --cvs-direct -q"):
89 if state == 0: # header
89 if state == 0: # header
90 if l.startswith("PatchSet"):
90 if l.startswith("PatchSet"):
91 id = l[9:-2]
91 id = l[9:-2]
@@ -102,8 +102,8 b' class convert_cvs:'
102 elif l.startswith("Author"):
102 elif l.startswith("Author"):
103 author = self.recode(l[8:-1])
103 author = self.recode(l[8:-1])
104 elif l.startswith("Tag: "):
104 elif l.startswith("Tag: "):
105 t = l[5:-1]
105 t = l[5:-1].rstrip()
106 if t != "(none) ":
106 if t != "(none)":
107 self.tags[t] = id
107 self.tags[t] = id
108 elif l.startswith("Log:"):
108 elif l.startswith("Log:"):
109 state = 1
109 state = 1
General Comments 0
You need to be logged in to leave comments. Login now