Fixed error with upload file

This commit is contained in:
Fergal Moran
2015-06-14 23:25:24 +01:00
parent 331e3166ce
commit 7d9c88ba99

View File

@@ -170,7 +170,7 @@ class PartialMixUploadView(views.APIView):
response = 'File creation in progress'
try:
input_file = in_file = os.path.join(file_storage.base_location, cache_file)
input_file = os.path.join(file_storage.base_location, cache_file)
# Chain the waveform & archive tasks together
# Probably not the best place for them but will do for now