From 2114266a410182a83caadcf6b58e8588ee28ec48 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 31 Jan 2015 14:20:15 +0100 Subject: [PATCH] escape "" - fixes #1 --- rtcFunctions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtcFunctions.py b/rtcFunctions.py index 945a38e..3b60f6f 100644 --- a/rtcFunctions.py +++ b/rtcFunctions.py @@ -94,7 +94,7 @@ def getchangeentries(self, baselinetocompare): revisionwithbrackets = splittedlines[0].strip() revision = revisionwithbrackets[1:-1] author = splittedlines[1].strip() - comment = splittedlines[2].strip() + comment = splittedlines[2].strip().replace("\"", "'") date = splittedlines[3].strip() changeentry = ChangeEntry(revision, author, date, comment) changeentries.append(changeentry)