From 08f4695283b0a53a95f99a1d95473a00f7680e05 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 31 Jul 2021 12:38:53 +0200 Subject: [PATCH] v0.12.6 --- copyparty/__version__.py | 4 ++-- scripts/uncomment.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/copyparty/__version__.py b/copyparty/__version__.py index ddfa7bb8..eb5abe33 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 12, 5) +VERSION = (0, 12, 6) CODENAME = "fil\033[33med" -BUILD_DT = (2021, 7, 30) +BUILD_DT = (2021, 7, 31) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/scripts/uncomment.py b/scripts/uncomment.py index 56153ea7..c7e4922b 100644 --- a/scripts/uncomment.py +++ b/scripts/uncomment.py @@ -65,9 +65,9 @@ def uncomment(fpath): def main(): - print("uncommenting", end="") + print("uncommenting", end="", flush=True) for f in sys.argv[1:]: - print(".", end="") + print(".", end="", flush=True) uncomment(f) print("k")