# HG changeset patch # User Edouard Gomez # Date 1172014686 -3600 # Node ID b53c6f7dbb1f49767217c0ddf1e838e6c651ceea # Parent 59de487f43d791b5b48093535d40bcef09e6588d Don't keep trailing white space in cvs tags diff --git a/contrib/convert-repo b/contrib/convert-repo --- a/contrib/convert-repo +++ b/contrib/convert-repo @@ -102,8 +102,8 @@ class convert_cvs: elif l.startswith("Author"): author = self.recode(l[8:-1]) elif l.startswith("Tag: "): - t = l[5:-1] - if t != "(none) ": + t = l[5:-1].rstrip() + if t != "(none)": self.tags[t] = id elif l.startswith("Log:"): state = 1