manual: no empty values

This commit is contained in:
lilydjwg 2017-12-01 18:14:04 +08:00
parent 587203d9ec
commit 1021d5f7e4

View file

@ -2,4 +2,4 @@
# Copyright (c) 2013-2017 lilydjwg <lilydjwg@gmail.com>, et al.
async def get_version(name, conf):
return conf.get('manual')
return conf.get('manual').strip() or None