Skip to content

Commit

Permalink
Merge 86c2b5e into 839b4ab
Browse files Browse the repository at this point in the history
  • Loading branch information
flopon committed Mar 29, 2018
2 parents 839b4ab + 86c2b5e commit 6602a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enocean/protocol/eep.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self):
self.telegrams = {}

try:
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'EEP.xml'), 'r') as xml_file:
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'EEP.xml'), 'r', encoding='UTF-8') as xml_file:
self.soup = BeautifulSoup(xml_file.read(), "html.parser")
self.init_ok = True
self.__load_xml()
Expand Down

0 comments on commit 6602a5d

Please sign in to comment.