diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-02-11 14:57:27 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-02-11 14:57:27 +0100 |
commit | d81cc8c0c46d295a3746ac658069820c95efe895 (patch) | |
tree | d8d6df73b9f90452a077b2f93615304bb8654417 /systemCheck.py | |
parent | Webinterface with lighttpd! locale fixing try. (diff) | |
download | pyload-d81cc8c0c46d295a3746ac658069820c95efe895.tar.xz |
cnl, EOL, path fixes
Diffstat (limited to 'systemCheck.py')
-rw-r--r-- | systemCheck.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/systemCheck.py b/systemCheck.py index 79d8600a2..831f76274 100644 --- a/systemCheck.py +++ b/systemCheck.py @@ -68,7 +68,13 @@ def main(): import pycurl except: core_err.append("Please install py-curl to use pyLoad.") -#@TODO version > 7.19 + + + try: + from pycurl import AUTOREFERER + except: + core_err.append("Your py-curl version is to old, please upgrade!") + try: import Image except: |