commit d986570c2e7e9d5b79a898fc86bed426f184e32d
parent abee263710e7ea2b6eeade3c63a14bb4ff900cbe
Author: ThomasV <thomasv@electrum.org>
Date: Mon, 7 Sep 2015 13:13:04 +0200
fix: func.__doc__ might be None on android
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/commands.py b/lib/commands.py
@@ -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: