Skip to content

Commit

Permalink
fix header writing
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Jun 22, 2021
1 parent 7486871 commit 9bb6a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sourmash/sbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ def save(self, path, storage=None, sparseness=0.0, structure_only=False):
manifest_name = f"{name}.manifest.csv"

manifest_fp = StringIO()
manifest.write_to_csv(manifest_fp)
manifest.write_to_csv(manifest_fp, write_header=True)
manifest_data = manifest_fp.getvalue().encode("utf-8")

if kind == "Zip":
Expand Down

0 comments on commit 9bb6a9b

Please sign in to comment.