Skip to content

Commit

Permalink
fix class name
Browse files Browse the repository at this point in the history
  • Loading branch information
n0mjs710 committed Dec 22, 2016
1 parent 6994171 commit 6bff580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hb_bridge_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# Module gobal varaibles


class routerSYSTEM(HBSYSTEM):
class bridgeallSYSTEM(HBSYSTEM):

def __init__(self, _name, _config, _logger):
HBSYSTEM.__init__(self, _name, _config, _logger)
Expand Down Expand Up @@ -224,7 +224,7 @@ def sig_handler(_signal, _frame):
logger.info('HBlink \'hb_bridge_all.py\' (c) 2016 N0MJS & the K0USY Group - SYSTEM STARTING...')
for system in CONFIG['SYSTEMS']:
if CONFIG['SYSTEMS'][system]['ENABLED']:
systems[system] = routerSYSTEM(system, CONFIG, logger)
systems[system] = bridgeallSYSTEM(system, CONFIG, logger)
reactor.listenUDP(CONFIG['SYSTEMS'][system]['PORT'], systems[system], interface=CONFIG['SYSTEMS'][system]['IP'])
logger.debug('%s instance created: %s, %s', CONFIG['SYSTEMS'][system]['MODE'], system, systems[system])

Expand Down

0 comments on commit 6bff580

Please sign in to comment.