Skip to content

Commit 2753246

Browse files
authored
Merge pull request #38 from biran4454/master
Fix comment hashtag issue
2 parents 3c89137 + 5fd3afb commit 2753246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerdeletesuite.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ var pd = {
272272
return check.subs && check.gold && check.saved && check.mod && check.score && check.date;
273273
},
274274
csvEscape: function(str) {
275-
return str.replace(/'/g,'`').replace(/"/g,'""');
275+
return str.replace(/#/g,'%23').replace(/'/g,'`').replace(/"/g,'""');
276276
},
277277
csvCell: function(str) {
278278
return '"'+str+'",';

0 commit comments

Comments
 (0)