From 589c1a4ff578b978484793debc77cc79e1291df3 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Wed, 11 Jul 2018 22:59:53 +0200 Subject: [PATCH] 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 --- pySim/transport/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/transport/__init__.py b/pySim/transport/__init__.py index 9cd23d03..4b932cdc 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