Added debug info to mumble manager

This commit is contained in:
Raynaldo Rivera 2014-11-19 19:27:03 -07:00
parent 5c6ff84694
commit 83f27322cd

5
services/managers/mumble_manager.py Normal file → Executable file
View File

@ -1,5 +1,6 @@
import os
import hashlib
import sys
from django.db import connections
from django.conf import settings
@ -134,7 +135,7 @@ class MumbleManager:
return username_clean, password
except:
print "Unexpected error:", sys.exc_info()[0]
return "", ""
@staticmethod
@ -154,7 +155,7 @@ class MumbleManager:
return username_clean, password
except:
print "Unexpected error:", sys.exc_info()[0]
return "", ""
@staticmethod