Skip to content

Commit

Permalink
fix string conversion (closes #109)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyroscope committed Jun 5, 2021
1 parent d00999a commit bf48ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyrocore/scripts/lstor.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def splitter(fields):
self.LOG.error("%s: Field %r not found (%s)" % (filename, field, exc))
break
else:
values.append(str(val))
values.append("%s" % val)
else:
listing = '\t'.join(values)
else:
Expand Down

0 comments on commit bf48ceb

Please sign in to comment.