From f9716f9e9f4053722e14ede4f418d81ec6980512 Mon Sep 17 00:00:00 2001 From: Not Date: Sun, 11 Dec 2022 15:16:00 +0100 Subject: [PATCH] use newlines instead of os.linesep --- tools/coldstore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/coldstore.py b/tools/coldstore.py index 499bfbd..fe1d388 100755 --- a/tools/coldstore.py +++ b/tools/coldstore.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 import sys -from os import linesep, path +from os import path +linesep = "\n" if len(sys.argv) != 3 or not sys.argv[1] or not sys.argv[2]: print("Usage: coldstore.py ")