kaitai-io / kaitai-io.github.io

Kaitai Project homepage
6 stars 9 forks source link

Fix usage example to work in Python 3 #10

Closed generalmimon closed 4 years ago

generalmimon commented 4 years ago

The Python example at https://kaitai.io/#quick-start doesn't work in Python 3, because it uses the print statement, which has been replaced with a print() function in Python 3: https://docs.python.org/3/whatsnew/3.0.html#print-is-a-function

GreyCat commented 4 years ago

Thanks for the catch, makes perfect sense!