Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
Merge pull request #74 from edx/mrehan/hotfix
Browse files Browse the repository at this point in the history
Mrehan/hotfix
  • Loading branch information
yro committed Dec 6, 2017
2 parents 921a3e2 + 4f73fe2 commit 9f7b6bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion VEDA_OS01/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,9 +733,11 @@ def update(self, **fields):
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,
)
1 change: 1 addition & 0 deletions control/veda_file_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ def get_or_create_course(self, course_id, course_hex=None):
institution=course_key.org,
edx_classid=course_key.course,
local_storedir=course_id,
yt_proc=False,
)
else:
try:
Expand Down

0 comments on commit 9f7b6bb

Please sign in to comment.