add missing key addOptions and removed space. Fixes #68
This commit is contained in:
parent
92c634f3eb
commit
70a6a30628
1 changed files with 2 additions and 1 deletions
|
@ -6,7 +6,7 @@ logger = getLogger('temp')
|
||||||
# Check for python3.6 or newer to resolve erroneous typing.NamedTuple issues
|
# Check for python3.6 or newer to resolve erroneous typing.NamedTuple issues
|
||||||
if version_info < (3, 6, 2):
|
if version_info < (3, 6, 2):
|
||||||
logger.error('Varken requires python3.6.2 or newer. You are on python%s.%s.%s - Exiting...',
|
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)
|
exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
@ -369,6 +369,7 @@ class Movie(NamedTuple):
|
||||||
physicalRelease: str = None
|
physicalRelease: str = None
|
||||||
physicalReleaseNote: str = None
|
physicalReleaseNote: str = None
|
||||||
website: str = None
|
website: str = None
|
||||||
|
addOptions: str = None
|
||||||
id: int = None
|
id: int = None
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue