* Fixed duplicate plugin events

This commit is contained in:
Kevin Froman 2019-04-25 00:38:15 -05:00
parent 71aadb7767
commit 47ee28f74f
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
9 changed files with 24 additions and 11 deletions

View file

@ -104,7 +104,10 @@ def show_peers(o_inst):
if not type(peers) is None:
if peers not in ('', 'failure', None):
if peers != False:
print(peers)
if peers == 'none':
print('No current outgoing connections.')
else:
print(peers)
else:
print('Daemon probably not running. Unable to list connected peers.')
break