Ladybug_ENVI-Met Release

hi Abraham,

This looks similar to an issue of compatibility between python 2 and python 3.

Python 2.7.12
>>> print 'TEST\N\N’
TEST\N\N
>>>

Python 3.6.0
>>> print(‘TEST\N\N’)
SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 4-5: malformed \N character escape

>>> print(r’TEST\N\N’)
TEST\N\N
>>>

I should find a solution. Please, if you have occasion, let me know if it gives the same issue also with other computers.

Thanks for the hint about Biomet folder, it should be a good opportunity to compare results comes from envimet and ladybug.

Antonello