beardsvibe / buildfox

Minimalistic Ninja generator
MIT License
50 stars 8 forks source link

Buildfox does not work with python 3.7 #182

Open quinor opened 5 years ago

quinor commented 5 years ago

...due to


Python 3.6.8 (default, Feb  1 2019, 22:21:15)
[GCC 8.2.1 20181127] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> print(re.escape("/"))
\/

Python 3.7.2 (default, Jan 10 2019, 23:51:51)
[GCC 8.2.1 20181127] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> print(re.escape("/"))
/
quinor commented 5 years ago

I know probably noone uses this library (except for me), just posting that here so that noone has to debug it except for me.