Skip to content

Commit

Permalink
fix one more error
Browse files Browse the repository at this point in the history
  • Loading branch information
akamhy committed Jan 24, 2021
1 parent e583509 commit 09290f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion waybackpy/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def save(self):
instance=self,
)

m = re.search(r"https?://web.archive.org/web/([0-9]{14})/http", archive_url)
m = re.search(r"https?://web.archive.org/web/([0-9]{14})/http", self._archive_url)
str_ts = m.group(1)
ts = datetime.strptime(str_ts, "%Y%m%d%H%M%S")
now = datetime.utcnow()
Expand Down

0 comments on commit 09290f8

Please sign in to comment.