Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Tim Lichtenberg", email = "tim.lichtenberg@rug.nl"},
{name = "Harrison Nicholls", email = "harrison.nicholls@ast.cam.ac.uk"},
]
keywords = [
"Astronomy",
Expand Down
2 changes: 1 addition & 1 deletion src/fwl_io/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
from fwl_io.paths import is_offline, resolve_cache_root, resolve_data_root
from fwl_io.registry import load_registry, validate_entry_name

log = logging.getLogger(__name__)
log = logging.getLogger('fwl.' + __name__)

_LOCK_DIRNAME = '.fwl-io-locks'
# How long a fetcher waits for the per-target download lock before giving up and
Expand Down
2 changes: 1 addition & 1 deletion src/fwl_io/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
from fwl_io.doi import ZENODO_DOI_PATTERN, zenodo_record_id
from fwl_io.registry import load_registry

log = logging.getLogger(__name__)
log = logging.getLogger('fwl.' + __name__)

# Re-exported so existing importers keep working; the parser lives in doi.
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion src/fwl_io/mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

from fwl_io.sync import ZENODO_API, fetch_zenodo_record, zenodo_record_id

log = logging.getLogger(__name__)
log = logging.getLogger('fwl.' + __name__)

# Safeguard against tabular-file ingest on upload, so a mirrored tabular file
# is stored byte-for-byte rather than converted to Dataverse's tabular format.
Expand Down
Loading