diff --git a/copyparty/__main__.py b/copyparty/__main__.py index 51bba006..77a80f6d 100644 --- a/copyparty/__main__.py +++ b/copyparty/__main__.py @@ -397,7 +397,7 @@ def main(argv=None): for opt in oa[2:]: if re.match("c[^,]", opt): mod = True - na.append("c," + opt[2:]) + na.append("c," + opt[1:]) elif re.sub("^[rwmd]*", "", opt) and "," not in opt: mod = True perm = opt[0] diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 1c035ca7..fa3dd458 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,6 +1,6 @@ # coding: utf-8 -VERSION = (0, 12, 0) +VERSION = (0, 12, 1) CODENAME = "fil\033[33med" BUILD_DT = (2021, 7, 28)