Generic error message for services that don't return plain text.
parent
4bf7150491
commit
4608c57ea8
|
@ -34,10 +34,15 @@ def service(phenny, input, command, args):
|
|||
template = template.replace('${nick}', urllib.quote(input.nick))
|
||||
uri = template.replace('${sender}', urllib.quote(input.sender))
|
||||
|
||||
info = web.head(uri)
|
||||
if isinstance(info, list):
|
||||
info = info[0]
|
||||
if not 'text/plain' in info.get('content-type', '').lower():
|
||||
return phenny.reply("Sorry, the service didn't respond in plain text.")
|
||||
bytes = web.get(uri)
|
||||
lines = bytes.splitlines()
|
||||
if not lines:
|
||||
return phenny.reply('Sorry, the service is broken.')
|
||||
return phenny.reply("Sorry, the service didn't respond any output.")
|
||||
phenny.say(lines[0][:350])
|
||||
|
||||
def refresh(phenny):
|
||||
|
|
|
@ -29,7 +29,8 @@ def loadReminders(fn):
|
|||
for line in f:
|
||||
line = line.strip()
|
||||
if line:
|
||||
tellee, teller, verb, timenow, msg = line.split('\t', 4)
|
||||
try: tellee, teller, verb, timenow, msg = line.split('\t', 4)
|
||||
except ValueError: continue # @@ hmm
|
||||
result.setdefault(tellee, []).append((teller, verb, timenow, msg))
|
||||
f.close()
|
||||
return result
|
||||
|
|
Loading…
Reference in New Issue