fnp
/
audio.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Set license constants.
[audio.git]
/
src
/
archive
/
utils.py
diff --git
a/src/archive/utils.py
b/src/archive/utils.py
index
f169847
..
b8598df
100644
(file)
--- a/
src/archive/utils.py
+++ b/
src/archive/utils.py
@@
-1,12
+1,12
@@
from hashlib import sha1
import os
import os.path
from hashlib import sha1
import os
import os.path
+import subprocess
from django.core.files.storage import FileSystemStorage
from django.core.files.uploadedfile import UploadedFile
class ExistingFile(UploadedFile):
from django.core.files.storage import FileSystemStorage
from django.core.files.uploadedfile import UploadedFile
class ExistingFile(UploadedFile):
-
def __init__(self, path, *args, **kwargs):
self.path = path
return super(ExistingFile, self).__init__(*args, **kwargs)
def __init__(self, path, *args, **kwargs):
self.path = path
return super(ExistingFile, self).__init__(*args, **kwargs)
@@
-19,7
+19,6
@@
class ExistingFile(UploadedFile):
class OverwriteStorage(FileSystemStorage):
class OverwriteStorage(FileSystemStorage):
-
def _save(self, name, content):
if self.exists(name):
self.delete(name)
def _save(self, name, content):
if self.exists(name):
self.delete(name)
@@
-31,7
+30,7
@@
class OverwriteStorage(FileSystemStorage):
def sha1_file(f):
sha = sha1()
def sha1_file(f):
sha = sha1()
- for piece in iter(lambda: f.read(1024
*1024), ''
):
+ for piece in iter(lambda: f.read(1024
* 1024), b""
):
sha.update(piece)
return sha.hexdigest()
sha.update(piece)
return sha.hexdigest()
@@
-40,5
+39,4
@@
def all_files(root_path):
root_len = len(root_path)
for path, dirs, files in os.walk(root_path):
for fname in files:
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('/')
-
+ yield os.path.join(path, fname)[root_len:].lstrip("/")