Compare commits
No commits in common. "40f5de20d2df5d23cd10881b3dea84ccb2a3d990" and "d4881197480599371cdef781b7fc316e31b9160c" have entirely different histories.
40f5de20d2
...
d488119748
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 False and ext == '.mp4' and settings.CHOP_SUPPORT:
|
if 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:
|
||||||
raise Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
|
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