malthe / chameleon

Fast HTML/XML template engine for Python
https://chameleon.readthedocs.io
Other
177 stars 64 forks source link

'PosixPath' object has no attribute 'at' #402

Closed iinov closed 10 months ago

iinov commented 10 months ago

Since release 4.4.0, I get the following error:

File "/home/patrick/bin/virtualenv3.11/lib/python3.11/site-packages/chameleon/template.py", line 349, in mtime
filename = path.joinpath(self.filename).at
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > AttributeError: 'PosixPath' object has no attribute 'at'

Did I miss something?

Thanks for your help.

malthe commented 10 months ago

@iinov there was a regression that meant auto_reload didn't work with non zip-compressed packages.

malthe commented 10 months ago

This should be fixed now.

iinov commented 10 months ago

It works fine now.

Thank you for your responsiveness.