Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-01-29 22:29:01 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-01-29 22:29:10 +0300
commite913f4b3e8ca4e8ad4b23fe11da562dbe0e38409 (patch)
tree29cbbc4287914a1f0afdcf06cfe9e52e34eb231b /scripts
parentff36e045d60f6ce692ea7c7a4f27b04445ece343 (diff)
Have testauth return a dummy avatar
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/testauth.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/testauth.py b/scripts/testauth.py
index a49a59a7b..88e7d097f 100755
--- a/scripts/testauth.py
+++ b/scripts/testauth.py
@@ -52,7 +52,8 @@ class ServerAuthenticatorI(Murmur.ServerUpdatingAuthenticator):
return None
def idToTexture(self, id, current=None):
- return None
+ print "idToTexture", id
+ return open("../icons/mumble.osx.png").read();
# The expanded methods from UpdatingAuthenticator. We only implement a subset for this example, but
# a valid implementation has to define all of them