ericmandel / pyds9

Python connection to SAOimage DS9 via XPA
76 stars 41 forks source link

pyds9.py and python3 #64

Closed paegert closed 4 years ago

paegert commented 6 years ago

Python 3 complains about concatenating bytes to strings when creating error messages. Lines similar to errmsg += ctypes.string_at(errs[i]).strip() + '\n' should be replaced by errmsg += str(ctypes.string_at(errs[i]).strip()) + '\n'

montefra commented 6 years ago

@paegert : thank you for the report.

Can you provide us more information? The traceback or warning and if possible the command that triggers the error are sufficient.

I think that I know what you are referring to, but would be nice to have a confirmation.

DougBurke commented 4 years ago

Closed by #88 (hopefully)