aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-07-11 22:59:53 +0200
committerdexter <pmaier@sysmocom.de>2018-07-13 08:50:33 +0000
commit589c1a4ff578b978484793debc77cc79e1291df3 (patch)
treeaa7007ddaa8c1cc9b8eb69267f966f51ea4332e5
parent5bf42600d4adfbadaf4f27e19dad46661da457f1 (diff)
cosmetic: fix excess space in log output (typo)
There shouldn't be a space between the end of a sentence and a punctuation mark. Change-Id: I33f9b8c803ccd185ffa370d235363423d82ba9c7
-rw-r--r--pySim/transport/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim/transport/__init__.py b/pySim/transport/__init__.py
index 9cd23d0..4b932cd 100644
--- a/pySim/transport/__init__.py
+++ b/pySim/transport/__init__.py
@@ -101,5 +101,5 @@ class LinkBase(object):
sw_masked = sw_masked + rv[1][i].lower()
if sw.lower() != sw_masked:
- raise RuntimeError("SW match failed ! Expected %s and got %s." % (sw.lower(), rv[1]))
+ raise RuntimeError("SW match failed! Expected %s and got %s." % (sw.lower(), rv[1]))
return rv