From f77fa6a2c84a069679386ada9c9d3762eb586633 Mon Sep 17 00:00:00 2001 From: erlehmann Date: Wed, 3 Dec 2008 04:17:12 +0000 Subject: [PATCH] typo git-svn-id: http://yolanda.mister-muffin.de/svn@403 7eef14d0-6ed0-489d-bf55-20463b2d70db --- trunk/yolanda/controllers/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/yolanda/controllers/upload.py b/trunk/yolanda/controllers/upload.py index 59bcda0..fc68a5c 100644 --- a/trunk/yolanda/controllers/upload.py +++ b/trunk/yolanda/controllers/upload.py @@ -111,7 +111,7 @@ class UploadController(BaseController): videodestination=os.path.join(config['pylons.paths']['static_files'], "videos", str(video.id)) imagedestination=os.path.join(config['pylons.paths']['static_files'], "video-stills", str(video.id)) - # start encoding unt snapshot threads in background + # start encoding thread in background threading.Thread(target=self.bgencode, args=(videosource, videodestination, imagedestination)).start() # return 'Successfully uploaded: %s'%video.query.all()