@devils0411 wrote:
After update Flexget to 2.9.4, and some command in config file is incorrect.
A little path of config.ymltasks:
Movie:
priority: 2
inputs:
- rss: '{? RRSUrls.url1 ?}'
- rss: '{? RRSUrls.url2 ?}'
- rss: '{{ secretfile.RRSUrls.url3 }}'error:
2017-01-16 14:16 CRITICAL manager [/tasks/Movie/inputs/2/rss] '{{ secretfile.RRSUrls.url3 }}' is not valid under any of the given schemasIf i change like this:
tasks:
Movie:
priority: 2
inputs:
- rss: '{? RRSUrls.url1 ?}'
- rss: '{? RRSUrls.url2 ?}'
- rss: '{? RRSUrls.url3 ?}'error:
2017-01-16 14:19 INFO manager Test database created
Traceback (most recent call last):
File "/opt/bin/flexget", line 11, in
sys.exit(main())
File "/opt/lib/python3.5/site-packages/flexget/__init__.py", line 42, in main
manager.start()
File "/opt/lib/python3.5/site-packages/flexget/manager.py", line 327, in start
self.handle_cli()
File "/opt/lib/python3.5/site-packages/flexget/manager.py", line 345, in handle_cli
command_options = getattr(options, command)
TypeError: getattr(): attribute name must be stringIn secretfile.yml:
RRSUrls:
url2: http://nnmclub.to/forum/rss2.php?f=954&uk
url3: http://nnmclub.to/forum/rss2.php?f=227&uk
Posts: 2
Participants: 2