* Fixed duplicate plugin events
This commit is contained in:
parent
71aadb7767
commit
47ee28f74f
9 changed files with 24 additions and 11 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue