mncc_sock.py: Fix typo and say connecting
We don't have a connection yet, so let's say this meant connecting. Change-Id: Iba0423add3ae4d6920fed74800b0c2b298dda501changes/71/1971/1
parent
19f678d259
commit
08207d9e6f
|
@ -55,7 +55,7 @@ def mncc_number(number, num_type = 0, num_plan = 0, num_present = 1, num_screen
|
|||
class MnccSocket(object):
|
||||
def __init__(self, address = '/tmp/bsc_mncc'):
|
||||
self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_SEQPACKET)
|
||||
print 'connectiong to %s' % address
|
||||
print 'connecting to %s' % address
|
||||
try:
|
||||
self.sock.connect(address)
|
||||
except socket.error, errmsg:
|
||||
|
|
Loading…
Reference in New Issue