From 0de2e6ddedb96ed253b7a598f6368e64f1f02f45 Mon Sep 17 00:00:00 2001 From: Christian Taedcke Date: Thu, 28 Nov 2013 16:49:43 +0100 Subject: [PATCH] In stm32w_flasher adapted error message for missing pyudev. --- tools/stm32w/stm32w_flasher/py_files/stm32w_flasher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/stm32w/stm32w_flasher/py_files/stm32w_flasher.py b/tools/stm32w/stm32w_flasher/py_files/stm32w_flasher.py index d83c095e7..e3d2f3fa5 100755 --- a/tools/stm32w/stm32w_flasher/py_files/stm32w_flasher.py +++ b/tools/stm32w/stm32w_flasher/py_files/stm32w_flasher.py @@ -14,7 +14,7 @@ try: import ftdi import pyudev except: - print 'Python modules serial and ftdi could not be loaded.' + print 'Python modules serial, ftdi and pyudev could not be loaded.' print 'Please install these dependencies:' print '(On Ubuntu) $ sudo apt-get install python-serial python-ftdi python-pyudev' sys.exit(-1)