mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 00:52:16 -06:00
v0.12.6
This commit is contained in:
parent
44e76d5eeb
commit
08f4695283
|
@ -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)
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue