Skip to content

Commit

Permalink
Release bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lens0021 committed Apr 12, 2021
1 parent 32dbbfd commit e65a9b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Versions and bullets are arranged chronologically from latest to oldest.

## v1.0.1

- Fix "TypeError: upgrade_dependencies() got an unexpected keyword argument"

## v1.0.0

- Percent encode page titles.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="legunto",
version="1.0.0",
version="1.0.1",
description="Fetch MediaWiki Scribunto modules from wikis",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/legunto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def install_dependencies() -> None:
print("'scribunto.lock' file already exists.")
print("Trying to upgrade...")
upgrade_dependencies(
scribunto=SCRIBUNTO_FILE_PATH, lock=LOCK_FILE_PATH)
scribunto_path=SCRIBUNTO_FILE_PATH, lock_path=LOCK_FILE_PATH)
return

dependencies = json.loads(open(SCRIBUNTO_FILE_PATH, "r").read())[
Expand Down

0 comments on commit e65a9b2

Please sign in to comment.