Fix file path quoting while constructing CSV file in memmap.py

Comma is a valid char in file paths for Posix systems.
pull/2964/head
Bartek Szatkowski 2016-10-07 16:25:17 +01:00
parent 7e292fb9b7
commit a7d9dbec69
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 = []