Allow the user to configure the port in the config, and other fixes.

This commit is contained in:
Sean B. Palmer
2008-04-26 15:54:35 +01:00
parent 286d4a8497
commit 986953131d
8 changed files with 22 additions and 7 deletions

View File

@@ -63,7 +63,7 @@ def translate(phrase, lang, target='en'):
translation = translation.replace('\n', ' ')
while ' ' in translation:
translation = translation.replace(' ', ' ')
return translation
return translation.lower()
return None
def tr(phenny, input):