Updated to reflect wiringpi2 to wiringpi rename
diff --git a/examples/delay.py b/examples/delay.py
index 66107ac..be899bf 100644
--- a/examples/delay.py
+++ b/examples/delay.py
@@ -1,5 +1,5 @@
 # Demonstrates use of Arduino-like delay function
-import wiringpi2
+import wiringpi
 print 'Hello World'
-wiringpi2.delay(1500) # Delay for 1.5 seconds
+wiringpi.delay(1500) # Delay for 1.5 seconds
 print 'Hi again!'