mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
nvchecker_source/manual: convert to string
because it's often written as an int or float, especially when converting from YAML.
This commit is contained in:
parent
290240eafb
commit
a2a239bdc6
1 changed files with 1 additions and 1 deletions
|
@ -2,4 +2,4 @@
|
|||
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
|
||||
|
||||
async def get_version(name, conf, **kwargs):
|
||||
return conf.get('manual').strip() or None
|
||||
return str(conf.get('manual')).strip() or None
|
||||
|
|
Loading…
Add table
Reference in a new issue