From: yomguy Date: Wed, 18 Jul 2012 17:28:40 +0000 (+0200) Subject: fix X-Git-Tag: 0.7-dev^2~83 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=534590781b30219a8fc1939032ac37994953cfc1;p=teleforma.git fix --- diff --git a/teleforma/views.py b/teleforma/views.py index 4518413b..c34239dd 100755 --- a/teleforma/views.py +++ b/teleforma/views.py @@ -411,7 +411,7 @@ class ConferenceRecordView(FormView): f = open(path, 'w') f.write(img.read()) f.close() - command = '/usr/bin/dwepb ' + path + ' -o ' + dir + os.sep + 'preview.png' + command = 'sleep 10; /usr/bin/dwepb ' + path + ' -o ' + dir + os.sep + 'preview.png &' os.system(command) @method_decorator(login_required)