Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pivotal-import/pivotal_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def process_pt_csv_export(ctx, pt_csv_file, entity_collector):
stats = Counter()
stats.update(entity_collector.collect(build_run_label_entity()))

with open(pt_csv_file) as csvfile:
with open(pt_csv_file, mode="r", encoding="utf-8") as csvfile:
reader = csv.reader(csvfile)
header = [col.lower() for col in next(reader)]
for row in reader:
Expand Down
Loading