From: Eric S. Raymond Date: Fri, 28 Sep 2012 20:16:11 +0000 (-0400) Subject: Improve handling of multiline file lists in SVN. X-Git-Tag: 1.1~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=60c5f2a30c7f0be28dcb50be6f643b5fae4e0514;p=irker.git Improve handling of multiline file lists in SVN. --- diff --git a/irkerhook.py b/irkerhook.py index 15c67ff..02c1efa 100755 --- a/irkerhook.py +++ b/irkerhook.py @@ -157,7 +157,7 @@ class SvnExtractor: self.channels = None self.tcp = True self.author = self.svnlook("author") - self.files = self.svnlook("dirs-changed") + self.files = self.svnlook("dirs-changed").strip().replace("\n", " ") self.logmsg = self.svnlook("log") self.rev = "r{0}".format(self.commit) def svnlook(self, info):