|
|
@@ -1314,7 +1314,8 @@ plot """
|
|
1314
|
1314
|
plots = []
|
|
1315
|
1315
|
for a in self.authors_to_plot:
|
|
1316
|
1316
|
i = i + 1
|
|
1317
|
|
- plots.append("""'lines_of_code_by_author.dat' using 1:%d title "%s" w lines""" % (i, a.replace("\"", "\\\"")))
|
|
|
1317
|
+ author = a.replace("\"", "\\\"").replace("`", "")
|
|
|
1318
|
+ plots.append("""'lines_of_code_by_author.dat' using 1:%d title "%s" w lines""" % (i, author))
|
|
1318
|
1319
|
f.write(", ".join(plots))
|
|
1319
|
1320
|
f.write('\n')
|
|
1320
|
1321
|
|
|
|
@@ -1341,7 +1342,8 @@ plot """
|
|
1341
|
1342
|
plots = []
|
|
1342
|
1343
|
for a in self.authors_to_plot:
|
|
1343
|
1344
|
i = i + 1
|
|
1344
|
|
- plots.append("""'commits_by_author.dat' using 1:%d title "%s" w lines""" % (i, a.replace("\"", "\\\"")))
|
|
|
1345
|
+ author = a.replace("\"", "\\\"").replace("`", "")
|
|
|
1346
|
+ plots.append("""'commits_by_author.dat' using 1:%d title "%s" w lines""" % (i, author))
|
|
1345
|
1347
|
f.write(", ".join(plots))
|
|
1346
|
1348
|
f.write('\n')
|
|
1347
|
1349
|
|