Merge pull request #587 from benleb/patch-3

fix baudrate option name in gps plugin
This commit is contained in:
evilsocket
2019-11-12 11:39:00 +01:00
committed by GitHub

View File

@ -25,7 +25,7 @@ class GPS(plugins.Plugin):
pass pass
agent.run('set gps.device %s' % self.options['device']) agent.run('set gps.device %s' % self.options['device'])
agent.run('set gps.speed %d' % self.options['speed']) agent.run('set gps.baudrate %d' % self.options['speed'])
agent.run('gps on') agent.run('gps on')
self.running = True self.running = True
else: else: