scp-fs2open / wxLauncher

wxLauncher
Other
26 stars 12 forks source link

More python3 fixes #131

Closed asarium closed 8 years ago

asarium commented 8 years ago

Apparently more changes were needed for python 3 compatibility. According to this website the code should work with python 2 after installing the future package.

MageKing17 commented 8 years ago

With all instance of string.replace() replaced with str.replace(), the import string line can be removed.

EDIT: Additionally, HTMLParser and sqlite3 don't seem to be used at all in onlinehelpmaker.py?

asarium commented 8 years ago

Good point, I removed those imports.