pxsocs/warden_terminal

Hiding portfolio not working

Closed this issue · 2 comments

if config['MAIN'].get('hide_private_info') is True:

if config['MAIN'].get('hide_private_info') is True:

should be:
if config['MAIN'].getboolean('hide_private_info') is True:

Also a nice catch. Been struggling to see why the Tor screen was not showing IP :)
Fixed on next version.

Also a nice catch. Been struggling to see why the Tor screen was not showing IP :)
Fixed on next version.

Happy to help!