Unverified Commit 9f7b6bb8 by Gregory Martin Committed by GitHub

Merge pull request #74 from edx/mrehan/hotfix

Mrehan/hotfix
parents 921a3e2b 4f73fe2a
......@@ -733,9 +733,11 @@ class TranscriptProcessMetadata(TimeStampedModel):
self.save()
def __unicode__(self):
return u'{video} - {provider} - {lang} - {status}'.format(
return u'{video} - {provider} - {process_id} - {translation_id} - {lang} - {status}'.format(
video=self.video.edx_id,
provider=self.provider,
process_id=self.process_id,
translation_id=self.translation_id,
lang=self.lang_code,
status=self.status,
)
......@@ -186,6 +186,7 @@ class FileDiscovery(object):
institution=course_key.org,
edx_classid=course_key.course,
local_storedir=course_id,
yt_proc=False,
)
else:
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment