X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/eee35e00bf0d0eb3d2a9f08f72c7052962fecbf6..ac39503a5a9a16c1098e65ee16a866cf8eb19a8f:/src/archive/utils.py diff --git a/src/archive/utils.py b/src/archive/utils.py index 3e89a8b..f169847 100644 --- a/src/archive/utils.py +++ b/src/archive/utils.py @@ -25,7 +25,7 @@ class OverwriteStorage(FileSystemStorage): self.delete(name) return super(OverwriteStorage, self)._save(name, content) - def get_available_name(self, name): + def get_available_name(self, name, max_length): return name @@ -39,6 +39,6 @@ def sha1_file(f): def all_files(root_path): root_len = len(root_path) for path, dirs, files in os.walk(root_path): - for fname in files: - yield os.path.join(path, fname)[root_len:].lstrip('/') + for fname in files: + yield os.path.join(path, fname)[root_len:].lstrip('/')