Skip to content

Commit

Permalink
Fix typo and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kannibalox committed Apr 5, 2023
1 parent bd3ed98 commit 747d24f
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
@@ -1,3 +1,7 @@
## [0.11.2]
### Fixed
- Typo in scene result check

## [0.11.1]
### Fixed
- Ignore missing result during srrdb.com check
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "PtpUploader"
version = "0.11.1"
version = "0.11.2"
description = "A small uploader for a mildly popular movie site"
authors = ["kannibalox <[email protected]>"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion src/PtpUploader/ReleaseNameParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, name):
if result["resultsCount"] > 0:
self.Scene = True
except Exception as e:
if result is not none:
if result is not None:
logger.debug("srrdb.com result: %s", result)
logger.error("Failed scene from srrdb.com: %s", e)

Expand Down

0 comments on commit 747d24f

Please sign in to comment.