summaryrefslogtreecommitdiffstats
path: root/bin/crashreportScraper.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/crashreportScraper.py')
-rwxr-xr-xbin/crashreportScraper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/crashreportScraper.py b/bin/crashreportScraper.py
index b0ab5f5bd5f9..7d57ab1f747b 100755
--- a/bin/crashreportScraper.py
+++ b/bin/crashreportScraper.py
@@ -149,7 +149,7 @@ def parse_details_and_get_info(url, gitRepo):
lines = f.readlines()
for index, line in enumerate(lines):
if index + 1 == int(codeNumber):
- codeLine += line.strip() + "\n"
+ codeLine += line.strip().replace("\"", "'") + "\n"
except FileNotFoundError:
codeLine += "\n"
continue