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

github.com/mumble-voip/mumble-scripts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2010-12-20 03:01:35 +0300
committerStefan Hacker <dd0t@users.sourceforge.net>2010-12-20 03:01:35 +0300
commitc1d7df9ae89fb045d8437d270362aef6d8411439 (patch)
treecbfffcd2d60a73fee7cfb8a3a7c295ddab455b53
parent0aaa59ab71bb121cfc53ce2c7ddebc62f95aa813 (diff)
Fix a few typos
-rwxr-xr-xAuthenticators/SMF/smfauth.py4
-rwxr-xr-xAuthenticators/phpBB3/phpBB3auth.py4
-rw-r--r--Helpers/modmurmur.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/Authenticators/SMF/smfauth.py b/Authenticators/SMF/smfauth.py
index 73b1199..1caf958 100755
--- a/Authenticators/SMF/smfauth.py
+++ b/Authenticators/SMF/smfauth.py
@@ -417,7 +417,7 @@ def do_main_program():
Murmur.MetaCallback.__init__(self)
self.app = app
- @fortifyIceFu
+ @fortifyIceFu()
@checkSecret
def started(self, server, current = None):
"""
@@ -439,7 +439,7 @@ def do_main_program():
else:
debug('Virtual server %d got started', server.id())
- @fortifyIceFu
+ @fortifyIceFu()
@checkSecret
def stopped(self, server, current = None):
"""
diff --git a/Authenticators/phpBB3/phpBB3auth.py b/Authenticators/phpBB3/phpBB3auth.py
index bd554d0..fa1b9ef 100755
--- a/Authenticators/phpBB3/phpBB3auth.py
+++ b/Authenticators/phpBB3/phpBB3auth.py
@@ -391,7 +391,7 @@ def do_main_program():
Murmur.MetaCallback.__init__(self)
self.app = app
- @fortifyIceFu
+ @fortifyIceFu()
@checkSecret
def started(self, server, current = None):
"""
@@ -413,7 +413,7 @@ def do_main_program():
else:
debug('Virtual server %d got started', server.id())
- @fortifyIceFu
+ @fortifyIceFu()
@checkSecret
def stopped(self, server, current = None):
"""
diff --git a/Helpers/modmurmur.py b/Helpers/modmurmur.py
index 6a59074..d98f65f 100644
--- a/Helpers/modmurmur.py
+++ b/Helpers/modmurmur.py
@@ -98,7 +98,7 @@ class MurmurServer(object):
slicefile = None
if major == 1:
if minor <= 0:
- # We don't support 0.X.X
+ # We don't support 1.0.X
critical("Server version not supported: %s", version)
return False
elif minor == 1: