Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #36 by doing byte/string conversion #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyric/utils/rfkill.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def rfkill_unblock(idx):
fout = None
try:
rfke = rfkh.rfkill_event(idx,rfkh.RFKILL_TYPE_ALL,rfkh.RFKILL_OP_CHANGE,0,0)
if _PY3_: rfke = rfke.decode('ascii')
fout = open(dpath, 'w')
fout.write(rfke)
except struct.error as e:
Expand Down Expand Up @@ -231,4 +232,4 @@ def gettype(idx):
except IOError:
raise pyric.error(errno.ENODEV,"No device at {0}".format(idx))
finally:
if fin: fin.close()
if fin: fin.close()