mncc_sock.py: Fix typo and say connecting

We don't have a connection yet, so let's say this meant connecting.

Change-Id: Iba0423add3ae4d6920fed74800b0c2b298dda501
This commit is contained in:
Holger Hans Peter Freyther 2017-03-05 17:39:18 +01:00
parent 19f678d259
commit 08207d9e6f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ def mncc_number(number, num_type = 0, num_plan = 0, num_present = 1, num_screen
class MnccSocket(object): class MnccSocket(object):
def __init__(self, address = '/tmp/bsc_mncc'): def __init__(self, address = '/tmp/bsc_mncc'):
self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_SEQPACKET) self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_SEQPACKET)
print 'connectiong to %s' % address print 'connecting to %s' % address
try: try:
self.sock.connect(address) self.sock.connect(address)
except socket.error, errmsg: except socket.error, errmsg: