Skip to content

Commit

Permalink
Fix bug where pages were not submitted
Browse files Browse the repository at this point in the history
  • Loading branch information
agude committed May 21, 2019
1 parent d49adb1 commit cb3d72a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion github_pages_archiver/archiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def main():
if args.urls:
logging.info("Adding page URLs to archive")
logging.debug("Page URLs to archive: %s", args.urls)
archive_urls += args.urls
archive_urls += map(format_archive_url, args.urls)

# Download and process the sitemaps
for sitemap_url in args.sitemaps:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Configure the package
setup(
name="Github Pages Archiver",
version="0.8.0",
version="0.8.1",
description="A script to backup Github Pages using the Internet Archive",
long_description=long_description,
author="Alexander Gude",
Expand Down

0 comments on commit cb3d72a

Please sign in to comment.