Compare commits

..

No commits in common. "40f5de20d2df5d23cd10881b3dea84ccb2a3d990" and "d4881197480599371cdef781b7fc316e31b9160c" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -619,7 +619,7 @@ def chop(video, start, end, subtitles=None):
fd.write(subtitles)
else:
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)
if subtitles_f:
os.unlink(subtitles_f)

View file

@ -274,7 +274,7 @@ except NameError:
secret.write(SECRET_KEY)
secret.close()
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)