Skip to content

Commit

Permalink
escape "" - fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
WtfJoke committed Jan 31, 2015
1 parent 4724ff8 commit 2114266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtcFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2114266

Please sign in to comment.