fix: func.__doc__ might be None on android

This commit is contained in:
ThomasV 2015-09-07 13:13:04 +02:00
parent abee263710
commit d986570c2e
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class Command:
self.requires_wallet = 'w' in s
self.requires_password = 'p' in s
self.description = func.__doc__
self.help = self.description.split('.')[0]
self.help = self.description.split('.')[0] if self.description else None
varnames = func.func_code.co_varnames[1:func.func_code.co_argcount]
self.defaults = func.func_defaults
if self.defaults: