This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Holger Freyther gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/1971
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
---
M mncc_sock.py
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/mncc-python refs/changes/71/1971/1
diff --git a/mncc_sock.py b/mncc_sock.py
index 8d3e2b9..48da514 100644
--- a/mncc_sock.py
+++ b/mncc_sock.py
@@ -55,7 +55,7 @@
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:
--
To view, visit https://gerrit.osmocom.org/1971
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Iba0423add3ae4d6920fed74800b0c2b298dda501
Gerrit-PatchSet: 1
Gerrit-Project: mncc-python
Gerrit-Branch: master
Gerrit-Owner: Holger Freyther <holger at freyther.de>