Pārlūkot izejas kodu

hopefully catch command exceptions properly this time

tags/v0.1
Ben Kurtovic pirms 13 gadiem
vecāks
revīzija
20ffe4b55a
1 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  1. +5
    -1
      irc/command_handler.py

+ 5
- 1
irc/command_handler.py Parādīt failu

@@ -58,5 +58,9 @@ def check(hook, data):
for command in commands:
if hook in command.get_hooks():
if command.check(data):
command.process(data)
try:
command.process(data)
except:
print "Error executing command:"
traceback.print_exc() # catch exceptions and print them
break

Notiek ielāde…
Atcelt
Saglabāt