summaryrefslogtreecommitdiffstats
path: root/systemCheck.py
diff options
context:
space:
mode:
authorGravatar X3n0m0rph59 <X3n0m0rph59@googlemail.com> 2012-04-22 17:18:52 +0200
committerGravatar X3n0m0rph59 <X3n0m0rph59@googlemail.com> 2012-04-22 17:18:52 +0200
commited131ce9fba4b374586885999029d1743e9feefd (patch)
tree44434dba849be87f809194020032d0d6396d2953 /systemCheck.py
parentFixed spelling in the documentation (diff)
downloadpyload-ed131ce9fba4b374586885999029d1743e9feefd.tar.xz
Fixed spelling in the source
Diffstat (limited to 'systemCheck.py')
-rw-r--r--systemCheck.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/systemCheck.py b/systemCheck.py
index b16704ac9..4b3c90753 100644
--- a/systemCheck.py
+++ b/systemCheck.py
@@ -50,7 +50,7 @@ def main():
core_info = []
if sys.version_info > (2, 8):
- core_err.append("Your python version is to new, Please use Python 2.6/2.7")
+ core_err.append("Your python version is too new, Please use Python 2.6/2.7")
if sys.version_info < (2, 5):
core_err.append("Your python version is to old, Please use at least Python 2.5")
@@ -64,18 +64,18 @@ def main():
try:
from pycurl import AUTOREFERER
except:
- core_err.append("Your py-curl version is to old, please upgrade!")
+ core_err.append("Your py-curl version is too old, please upgrade!")
try:
import Image
except:
- core_err.append("Please install py-imaging/pil to use Hoster, which uses captchas.")
+ core_err.append("Please install py-imaging/pil to use Hoster, which use captchas.")
pipe = subprocess.PIPE
try:
p = subprocess.call(["tesseract"], stdout=pipe, stderr=pipe)
except:
- core_err.append("Please install tesseract to use Hoster, which uses captchas.")
+ core_err.append("Please install tesseract to use Hoster, which use captchas.")
try:
import OpenSSL
@@ -102,7 +102,7 @@ def main():
try:
import flup
except:
- web_info.append("Install Flup to use FastCGI or optional webservers.")
+ web_info.append("Install Flup to use FastCGI or optional web servers.")
if web_err:
@@ -110,10 +110,10 @@ def main():
for err in web_err:
print(err)
else:
- print("No Problems detected, Webinterface should work fine.")
+ print("No Problems detected, web interface should work fine.")
if web_info:
- print("\nPossible improvements for webinterface:\n")
+ print("\nPossible improvements for web interface:\n")
for line in web_info:
print(line)