Compare commits
2 commits
d488119748
...
40f5de20d2
| Author | SHA1 | Date | |
|---|---|---|---|
| 40f5de20d2 | |||
| 708f3d8927 |
2 changed files with 2 additions and 2 deletions
|
|
@ -619,7 +619,7 @@ def chop(video, start, end, subtitles=None):
|
||||||
fd.write(subtitles)
|
fd.write(subtitles)
|
||||||
else:
|
else:
|
||||||
subtitles_f = None
|
subtitles_f = None
|
||||||
if ext == '.mp4' and settings.CHOP_SUPPORT:
|
if False and ext == '.mp4' and settings.CHOP_SUPPORT:
|
||||||
Chop(video, choped_video, start, end, subtitles_f)
|
Chop(video, choped_video, start, end, subtitles_f)
|
||||||
if subtitles_f:
|
if subtitles_f:
|
||||||
os.unlink(subtitles_f)
|
os.unlink(subtitles_f)
|
||||||
|
|
|
||||||
|
|
@ -274,7 +274,7 @@ except NameError:
|
||||||
secret.write(SECRET_KEY)
|
secret.write(SECRET_KEY)
|
||||||
secret.close()
|
secret.close()
|
||||||
except IOError:
|
except IOError:
|
||||||
Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
|
raise Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
|
||||||
|
|
||||||
INSTALLED_APPS = tuple(list(INSTALLED_APPS) + LOCAL_APPS)
|
INSTALLED_APPS = tuple(list(INSTALLED_APPS) + LOCAL_APPS)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue