From 651295cac0803753b45d4d18856170c883d3429c Mon Sep 17 00:00:00 2001 From: William Pickering Date: Wed, 26 Jun 2013 15:54:50 +1000 Subject: [PATCH] Correct typo (sofPwmWrite -> softPwmWrite) --- wiringpi2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiringpi2.py b/wiringpi2.py index 098fec2..5fb5c37 100644 --- a/wiringpi2.py +++ b/wiringpi2.py @@ -658,7 +658,7 @@ class GPIO(object): def softPwmCreate(self,*args): return softPwmCreate(*args) def softPwmWrite(self,*args): - return sofPwmWrite(*args) + return softPwmWrite(*args) def softToneCreate(self,*args): return softToneCreate(*args)