mirror of
https://github.com/hemna/aprsd-slack-plugin.git
synced 2025-03-04 02:18:27 -05:00
Fixed missing import for config
This commit is contained in:
parent
63726e426e
commit
3bfc0188c0
@ -7,6 +7,7 @@ from oslo_config import cfg
|
|||||||
|
|
||||||
import aprsd_slack_plugin
|
import aprsd_slack_plugin
|
||||||
from aprsd_slack_plugin import base_plugin
|
from aprsd_slack_plugin import base_plugin
|
||||||
|
from aprsd_slack_plugin import conf # noqa
|
||||||
|
|
||||||
|
|
||||||
CONF = cfg.CONF
|
CONF = cfg.CONF
|
||||||
|
@ -6,6 +6,7 @@ from oslo_config import cfg
|
|||||||
|
|
||||||
import aprsd_slack_plugin
|
import aprsd_slack_plugin
|
||||||
from aprsd_slack_plugin import base_plugin
|
from aprsd_slack_plugin import base_plugin
|
||||||
|
from aprsd_slack_plugin import conf # noqa
|
||||||
|
|
||||||
|
|
||||||
CONF = cfg.CONF
|
CONF = cfg.CONF
|
||||||
|
@ -5,6 +5,7 @@ from oslo_config import cfg
|
|||||||
|
|
||||||
import aprsd_slack_plugin
|
import aprsd_slack_plugin
|
||||||
from aprsd_slack_plugin import base_plugin
|
from aprsd_slack_plugin import base_plugin
|
||||||
|
from aprsd_slack_plugin import conf # noqa
|
||||||
|
|
||||||
|
|
||||||
CONF = cfg.CONF
|
CONF = cfg.CONF
|
||||||
@ -32,12 +33,8 @@ class SlackNotifyPlugin(
|
|||||||
fromcall = packet.from_call
|
fromcall = packet.from_call
|
||||||
# message = packet["message_text"]
|
# message = packet["message_text"]
|
||||||
|
|
||||||
is_setup = self.setup_slack()
|
|
||||||
if not is_setup:
|
|
||||||
return
|
|
||||||
|
|
||||||
wl = packets.WatchList()
|
wl = packets.WatchList()
|
||||||
if wl.is_old(packet["from"]):
|
if wl.is_old(fromcall):
|
||||||
# get last location of a callsign, get descriptive name from weather service
|
# get last location of a callsign, get descriptive name from weather service
|
||||||
callsign_url = f"<http://aprs.fi/info/a/{fromcall}|{fromcall}>"
|
callsign_url = f"<http://aprs.fi/info/a/{fromcall}|{fromcall}>"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user