mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 10:51:34 +08:00
This fixes the pgcleanup script and an integration test. The test fails because of an error in the script. The error is caused by incorrect string formatting. The new SQLAlchemy URL object extends collections.namedtuple, and a tuple is incompatible with printf-style formating. Ref: https://github.com/sqlalchemy/sqlalchemy/blob/18dbd6aa12a7eca0acb1e2c4f752088e24d6adae/lib/sqlalchemy/engine/url.py#L36 https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting