Skip to content

Commit 647aa15

Browse files
committed
Corrects errors made when refactoring
1 parent ab95ccb commit 647aa15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packet/routes/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from packet import app, db
2-
from packet.utils import before_request, packet_auth, shower
2+
from packet.utils import before_request, packet_auth, notify_slack
33
from packet.models import Packet, MiscSignature
44

55

packet/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ def notify_slack(name: str):
9090
"""
9191
Sends a congratulate on sight decree to Slack.
9292
"""
93-
msg = f'{name} got :100: on packet. Congratulate on sight.'
93+
msg = f'{name} got :100: on packet. Shower on sight.'
9494
requests.put(app.config["SLACK_WEBHOOK_URL"], json={'text':msg})

0 commit comments

Comments
 (0)