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")