New submission from Thomas Scrace:
Currently os.path.join will raise an AttributeError if passed an argument that
does not have an endswith() method.
A try/except around the offending line would let us raise a more helpful
TypeError:
except AttributeError as e:
bad = e.args[0
Thomas Scrace added the comment:
Is anybody working on this issue? If not, I think it looks like it might be a
nice one for me to tackle. I'll go ahead unless there are any objections.
--
nosy: +thomas.scrace
___
Python tracker