From dcfae726887b67ffabdb5885d5cf43d8469d234f Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Wed, 26 May 2010 12:10:09 +0200 Subject: [PATCH] store values in integer instead of booleans --- weboob/frontends/qvideoob/qvideoob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weboob/frontends/qvideoob/qvideoob.py b/weboob/frontends/qvideoob/qvideoob.py index 621a7c53..f54e3190 100644 --- a/weboob/frontends/qvideoob/qvideoob.py +++ b/weboob/frontends/qvideoob/qvideoob.py @@ -27,8 +27,8 @@ class QVideoob(QtApplication): APPNAME = 'qvideoob' VERSION = '1.0' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' - CONFIG = {'settings': {'nsfw': True, - 'sfw': True, + CONFIG = {'settings': {'nsfw': 1, + 'sfw': 1, 'sortby': 0, 'backend': '' }