Browse Source

bugfix: alfred's node-id was not derived correctly in every case

Helge Jung 9 years ago
parent
commit
0b26672cf5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ffstatus/alfred.py

+ 1 - 1
ffstatus/alfred.py

@@ -73,7 +73,7 @@ class AlfredParser:
             if 'node_id' in alfredinfo['static']:
                 myid = alfredinfo['static']['node_id']
             else:
-                alfredid.lower().replace(':', '')
+                myid = alfredid.lower().replace(':', '')
 
             nodeinfo = {
                 'hostname': None,