This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
michal
/
craftbeerpi3
mirror of
https://github.com/Manuel83/craftbeerpi3
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
2
Wiki
Activity
Browse Source
use ImportError that is compatible with python 3.5
pull/258/head
Juan Pablo Giménez
5 years ago
parent
184a939370
commit
a05c6e6735
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/base_plugins/gpio_actor/__init__.py
+ 1
- 1
modules/base_plugins/gpio_actor/__init__.py
View File
@@ -10,7 +10,7 @@ try:
import RPi.GPIO as GPIO # pylint: disable=import-error
GPIO.setmode(GPIO.BCM)
except
ModuleNotFound
Error as exp:
except
Import
Error as exp:
print(exp)
Write
Preview
Loading…
Cancel
Save