mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Removed time import from cricket plugin
This commit is contained in:
parent
90397f8160
commit
2e2c1b67a4
@ -1,7 +1,6 @@
|
||||
import prof
|
||||
import urllib2
|
||||
import json
|
||||
import time
|
||||
|
||||
#score_url = "http://api.scorescard.com/?type=score&teamone=Australia&teamtwo=England"
|
||||
score_url = None
|
||||
@ -12,7 +11,11 @@ summary = None
|
||||
def prof_init(version, status):
|
||||
if score_url:
|
||||
prof.register_timed(get_scores, 60)
|
||||
prof.register_command("/cricket", 0, 0, "/cricket", "Get latest cricket score.", "Get latest cricket score.", cmd_cricket)
|
||||
prof.register_command("/cricket", 0, 0,
|
||||
"/cricket",
|
||||
"Get latest cricket score.",
|
||||
"Get latest cricket score.",
|
||||
cmd_cricket)
|
||||
|
||||
def prof_on_start():
|
||||
if score_url:
|
||||
|
Loading…
Reference in New Issue
Block a user