From 534590781b30219a8fc1939032ac37994953cfc1 Mon Sep 17 00:00:00 2001 From: yomguy Date: Wed, 18 Jul 2012 19:28:40 +0200 Subject: [PATCH] fix --- teleforma/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5