From 3a8c515e21ab3839e795f33d8db7c50f3c5beab0 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 10 Sep 2015 20:22:54 +0300 Subject: [PATCH] Minor fix --- platformio/commands/serialports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/serialports.py b/platformio/commands/serialports.py index 2e157110..f4232a1b 100644 --- a/platformio/commands/serialports.py +++ b/platformio/commands/serialports.py @@ -81,4 +81,4 @@ def serialports_monitor(**kwargs): try: miniterm.main() except Exception as e: # pylint: disable=W0702 - raise MinitermException("Miniterm: %s" % e) + raise MinitermException(e)