fixed bug in iwd.py

And fixed a typo in README.md
This commit is contained in:
Pranav Jerry 2021-07-17 13:34:06 +05:30
parent 7b7c3f0b2e
commit b1d970a0f6
Signed by: pranav
GPG Key ID: F1DCDC4FED0A0C5B
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ and others which can work on an intranet.
## Uninstalling
If you installed naxalnet manually, there is now way to uninstall
If you installed naxalnet manually, there is no way to uninstall
than manually removing the files:
```sh

View File

@ -164,7 +164,7 @@ class Device:
"""
Same as is_adhoc_started(), but for ap
"""
if self.is_powered_on() and self.get_mode == "ap":
if self.is_powered_on() and self.get_mode() == "ap":
return self._proxy.Started
return None