inventree / inventree-python

Python library for communication with inventree via API
https://docs.inventree.org/en/latest/api/python/python/
MIT License
26 stars 34 forks source link

Update syntax of logging statements (to fix #87) #88

Closed mvnmgrx closed 2 years ago

mvnmgrx commented 2 years ago

This PR fixes the problem discussed in #87 which created exceptions when using the logging module with rotating file handlers. For this, all format string statements that previously missed their format placeholders as well as general logging statements that require formating were replaced with f-strings.

Some other stray format statements were also replaced in #a3cd5da to be consistent with string formating.

SchrodingersGat commented 2 years ago

Thanks @mvnmgrx