Skip to content

Commit

Permalink
Rename constructor. Add protected methods and vars. Add new release
Browse files Browse the repository at this point in the history
  • Loading branch information
isapozhkov committed Oct 21, 2016
1 parent 72b11d3 commit 70cb0d3
Show file tree
Hide file tree
Showing 3 changed files with 182 additions and 184 deletions.
4 changes: 2 additions & 2 deletions scripts/InitWiFi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from wificontrol import ReachWiFi
from wificontrol import wificontrol
import sys

def ConnectionCallback(result, wific):
Expand All @@ -17,7 +17,7 @@ def ConnectionCallback(result, wific):

if __name__ == "__main__":
try:
rwc = ReachWiFi()
rwc = wificontrol()
except OSError, error:
print error
sys.exit(2)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='wificontrol',
version='0.1.5',
version='0.2.0',
author='Ivan Sapozhkov',
author_email='[email protected]',
py_modules=['wificontrol'],
Expand Down
Loading

0 comments on commit 70cb0d3

Please sign in to comment.