diff options
| author | Cody Logan <cody@lokken.dev> | 2023-10-20 16:23:28 -0700 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-10-20 16:23:28 -0700 |
| commit | 05457af0d73ff3a820c0b465e6607fc5832a6e74 (patch) | |
| tree | cc1a6e13d2a651c4048c5092c4f7891bb982c676 /src/wikiget/wikiget.py | |
| parent | 59b97c7bef21cf68935b68fa7de6fd67653e21af (diff) | |
| download | wikiget-05457af0d73ff3a820c0b465e6607fc5832a6e74.tar.gz wikiget-05457af0d73ff3a820c0b465e6607fc5832a6e74.zip | |
Reorganize File class
Diffstat (limited to 'src/wikiget/wikiget.py')
| -rw-r--r-- | src/wikiget/wikiget.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wikiget/wikiget.py b/src/wikiget/wikiget.py index af13bc8..90078e1 100644 --- a/src/wikiget/wikiget.py +++ b/src/wikiget/wikiget.py @@ -195,15 +195,15 @@ def batch_download(args): def main(): - # setup + # setup our environment parser = construct_parser() args = parser.parse_args() - configure_logging(args) # log events are appended to the file if it already exists, so note the start of a # new download session logging.info(f"Starting download session using wikiget {wikiget.wikiget_version}") + logging.debug(f"User agent: {wikiget.USER_AGENT}") if args.batch: # batch download mode |
