From c703c6f1d971b5b940da4eeca80d9aada0b804d7 Mon Sep 17 00:00:00 2001 From: yomguy Date: Wed, 18 Jul 2012 19:23:48 +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 4a32c2bc..44e9b55e 100755 --- a/teleforma/views.py +++ b/teleforma/views.py @@ -412,7 +412,7 @@ class ConferenceRecordView(FormView): f = open(path, 'w') f.write(img.read()) f.close() - command = 'dwepb ' + path + ' -o ' + dir + os.sep + 'preview.png' + command = '/usr/bin/dwepb ' + path + ' -o ' + dir + os.sep + 'preview.png' os.system(command) @method_decorator(login_required) -- 2.39.5