Conflicts:
	irc.py
	modules/oblique.py
	modules/startup.py
This commit is contained in:
mutantmonkey
2012-02-17 22:10:05 -05:00
4 changed files with 7 additions and 3 deletions

View File

@@ -43,6 +43,8 @@ def service(phenny, input, command, args):
lines = bytes.splitlines()
if not lines:
return phenny.reply("Sorry, the service didn't respond any output.")
try: line = lines[0].encode('utf-8')[:350]
except: line = lines[0][:250]
phenny.say(lines[0][:350])
def refresh(phenny):