mirror of
https://github.com/lubuntu-team/lugito.git
synced 2025-05-01 21:11:28 +00:00
Add a delay so we aren't spamming the channel.
This commit is contained in:
parent
3c7448284a
commit
2338e394aa
3
lugito
3
lugito
@ -9,6 +9,7 @@ from flask import Flask, request
|
|||||||
from pprint import pprint
|
from pprint import pprint
|
||||||
from hashlib import sha256
|
from hashlib import sha256
|
||||||
from phabricator import Phabricator
|
from phabricator import Phabricator
|
||||||
|
from time import sleep
|
||||||
|
|
||||||
website = "https://phab.lubuntu.me"
|
website = "https://phab.lubuntu.me"
|
||||||
|
|
||||||
@ -78,6 +79,8 @@ def ircmessage(objectstr, who, body, link):
|
|||||||
message = message + "\x032" + link + "\x03"
|
message = message + "\x032" + link + "\x03"
|
||||||
# Make sure we can debug this if it goes haywire
|
# Make sure we can debug this if it goes haywire
|
||||||
print(message)
|
print(message)
|
||||||
|
# Sleep for a second, so when we have a bunch of messages we have a buffer
|
||||||
|
sleep(1)
|
||||||
# Aaaaand, send it off!
|
# Aaaaand, send it off!
|
||||||
sendnotice(message)
|
sendnotice(message)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user