Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
La Quadrature du Net
rpteam
wantzel
Commits
283eb2b1
Commit
283eb2b1
authored
May 22, 2018
by
Mindiell
Browse files
#35
: fix the call to LoopingCall
parent
322808e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
wantzel.py
View file @
283eb2b1
...
...
@@ -38,7 +38,7 @@ class Wantzel(object):
self
.
irc
.
set_privmsg
=
self
.
set_privmsg
reactor
.
connectTCP
(
config
.
server
,
config
.
port
,
self
.
irc
)
# Loop call
self
.
loop
=
reactor
.
LoopingCall
(
self
.
timer
)
self
.
loop
=
task
.
LoopingCall
(
self
.
timer
)
self
.
loop
.
start
(
config
.
timer
)
def
timer
(
self
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment