Merge pull request #2964 from bulislaw/fix_csv_quoting

Fix file path quoting while constructing CSV file in memmap.py
pull/2974/merge
Sam Grove 2016-10-10 10:35:44 -05:00 committed by GitHub
commit c0c2563580
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ class MemapParser(object):
file_desc - the file to write out the final report to
"""
csv_writer = csv.writer(file_desc, delimiter=',',
quoting=csv.QUOTE_NONE)
quoting=csv.QUOTE_MINIMAL)
csv_module_section = []
csv_sizes = []