Use "127.0.0.1" instead of "localhost" when starting the SignalReceiver

This commit is contained in:
Andrew Resch 2008-10-15 19:19:12 +00:00
parent 56c496dc5d
commit db736c9075
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class SignalReceiver(ThreadingMixIn, SimpleXMLRPCServer.SimpleXMLRPCServer):
def start_server(self, port=None): def start_server(self, port=None):
# Setup the xmlrpc server # Setup the xmlrpc server
host = "localhost" host = "127.0.0.1"
if self.remote == True: if self.remote == True:
host = "" host = ""