Skip to content

Commit

Permalink
replace None
Browse files Browse the repository at this point in the history
  • Loading branch information
Connor Martin committed Aug 22, 2019
1 parent 3ac7898 commit e121cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/common/pkg_formats/python.py
Expand Up @@ -266,7 +266,7 @@ def process_csv_row(row):
missing_pyc_files = (ff for ff in (
_pyc_path(f, py_ver_mm) for f in files_set if _py_file_re.match(f)
) if ff not in files_set)
records = sorted(concatv(records, ((pf, None, None) for pf in missing_pyc_files)))
records = sorted(concatv(records, ((pf, "", "") for pf in missing_pyc_files)))
return records

return []
Expand Down

0 comments on commit e121cf9

Please sign in to comment.