I'm using Arch Linux and python 3 is the default python version there it seems:
File "/home/hohoho/dev/CubeMX2Makefile/CubeMX2Makefile.py", line 208, in <module>
main()
File "/home/hohoho/dev/CubeMX2Makefile/CubeMX2Makefile.py", line 188, in main
LDSCRIPT = ld_script_subst)
File "/usr/lib/python3.5/string.py", line 129, in substitute
return self.pattern.sub(convert, self.template)
TypeError: cannot use a string pattern on a bytes-like object
When running it via python2, it works (also editing the shebang to #!/usr/bin/env python2 makes it work).
I'm using Arch Linux and python 3 is the default python version there it seems:
When running it via python2, it works (also editing the shebang to
#!/usr/bin/env python2makes it work).