You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ckan_pycsw.py there is a TypeError raised when various references to table_name = pycsw_config.get("repository", "table", "records") is called, indicating a maximum of 3 arguments, with 4 supplied, e.g.
In
ckan_pycsw.py
there is aTypeError
raised when various references totable_name = pycsw_config.get("repository", "table", "records")
is called, indicating a maximum of 3 arguments, with 4 supplied, e.g.https://github.com/ckan/ckanext-spatial/blob/master/bin/ckan_pycsw.py#L27
According to https://docs.python.org/3/library/configparser.html#fallback-values there is a keyword-only
fallback
argument, which looks to be the possible intended behavior here? Should this beThe text was updated successfully, but these errors were encountered: