Skip to content

Commit

Permalink
add missing key addOptions and removed space. Fixes #68
Browse files Browse the repository at this point in the history
  • Loading branch information
dirtycajunrice committed Dec 30, 2018
1 parent 92c634f commit 70a6a30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion varken/structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Check for python3.6 or newer to resolve erroneous typing.NamedTuple issues
if version_info < (3, 6, 2):
logger.error('Varken requires python3.6.2 or newer. You are on python%s.%s.%s - Exiting...',
version_info.major, version_info.minor, version_info.micro)
version_info.major, version_info.minor, version_info.micro)
exit(1)


Expand Down Expand Up @@ -369,6 +369,7 @@ class Movie(NamedTuple):
physicalRelease: str = None
physicalReleaseNote: str = None
website: str = None
addOptions: str = None
id: int = None


Expand Down

0 comments on commit 70a6a30

Please sign in to comment.