[ServerUp] Use phenny.say instead of phenny.reply for results

master
Sfan5 2013-01-19 15:19:17 +01:00
parent b9f3e1e223
commit c94e67c56e
1 changed files with 3 additions and 3 deletions

View File

@ -66,11 +66,11 @@ def serverup(phenny, input):
sock.sendto(buf, (address, port))
sock.close()
end = time.time()
phenny.reply("%s is up (%0.3fms)" % (repres,end-start))
phenny.say("%s is up (%0.3fms)" % (repres,end-start))
else:
phenny.reply("%s seems to be down " % repres)
phenny.say("%s seems to be down " % repres)
except:
phenny.reply("%s seems to be down " % repres)
phenny.say("%s seems to be down " % repres)