tdisable verbose option with kivy - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit f2b208429d8fbb1019ddf64a2089f0cc0ba5e8be DIR parent 13b16e9d4f0a0795f6c8ace22d9db3d2c3c05214 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 23 Jan 2017 15:57:45 +0100 disable verbose option with kivy Diffstat: M electrum | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/electrum b/electrum t@@ -311,7 +311,8 @@ if __name__ == '__main__': if config_options.get('portable'): config_options['electrum_path'] = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'electrum_data') - set_verbosity(config_options.get('verbose')) + # kivy sometimes freezes when we write to sys.stderr + set_verbosity(config_options.get('verbose') and config_options.get('gui')!='kivy') # check uri uri = config_options.get('url')