summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-11-08 21:35:57 +0100
committerGravatar spoob <spoob@gmx.de> 2009-11-08 21:35:57 +0100
commit9d68449c658467ac664bc492d67172647095236c (patch)
treee8474b49a787fac56ad2ccad1d7ecfaf44044510
parentcheck installs, fix #32 (diff)
downloadpyload-0.2.2.tar.xz
pyLoad v0.2.2v0.2.2
-rwxr-xr-xpyLoadCore.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index 68ec53613..2408c999c 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -17,7 +17,7 @@
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
###
-CURRENT_VERSION = '0.2.1'
+CURRENT_VERSION = '0.2.2'
import ConfigParser
import gettext
@@ -67,10 +67,10 @@ class Core(object):
self.do_kill = False
translation = gettext.translation("pyLoad", "locale", languages=[self.config['general']['language']])
translation.install(unicode=True)
-
+
self.check_installs("pycurl", "pycurl for lower memory footprint while downloading")
- self.check_installs("tesseract", "tesseract for captcha reading", False, True)
- self.check_installs("gocr", "gocr for captcha reading", False, True)
+ self.check_installs("tesseract", "tesseract for captcha reading", False)
+ self.check_installs("gocr", "gocr for captcha reading", False)
self.check_create(self.config['log']['log_folder'], _("folder for logs"))
self.check_create(self.config['general']['download_folder'], _("folder for downloads"))
self.check_create(self.config['general']['link_file'], _("file for links"), False)