From 868894c829fe45b2f88ba0a7abfba65b5ecf9196 Mon Sep 17 00:00:00 2001 From: falsycat Date: Sat, 24 Aug 2024 17:31:35 +0900 Subject: [PATCH] fix: an issue that output is invalid CSV --- bookeeper/ctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookeeper/ctx.py b/bookeeper/ctx.py index 8f5675f..f5172ce 100644 --- a/bookeeper/ctx.py +++ b/bookeeper/ctx.py @@ -43,4 +43,4 @@ class Context: def sql(self, cmd: str): self.dbcur.execute(cmd) for row in self.dbcur: - print(*row, file=self.ostream) + print(*row, file=self.ostream, sep=",")