cleaned syntax issues in master.py

This commit is contained in:
Thomas S Hatch 2011-02-27 15:22:52 -07:00
parent cc7f93d93c
commit bc650ffbc1

View file

@ -5,7 +5,7 @@ involves preparing the three listeners and the workers needed by the master.
# Import python modules
import os
import random
import multiprocesing
import multiprocessing
# Import zeromq
import zmq
# Import salt modules
@ -41,7 +41,7 @@ class Publisher(multiprocessing.Process):
'''
Start the publisher
'''
self._bind()
self.__bind()
class ReqServer(multiprocessing.Process):