Skip to content

Commit

Permalink
Removed some debugging code ...
Browse files Browse the repository at this point in the history
  • Loading branch information
titegtnodI committed Apr 12, 2014
1 parent beee45b commit e578b21
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,12 @@ def loadProtocol(location, name):
log('Protocol \"' + name + '\" must define \'load\'.')
return False
protocols = dict(protocols.items() + load().items())
except Exception as e:
print e
except:
log('Protocol \"' + name + '\" failed to load.')
return False
try:
admins = dict(admins.items() + plugAdmins.items())
except Exception:
except:
log('Protocol \"' + name + '\" has not specified any admins.')
log('Protocol \"' + name + '\" loaded.')
return True
Expand Down

0 comments on commit e578b21

Please sign in to comment.