mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-25 19:44:13 +01:00
Added version check to the template.
This commit is contained in:
parent
e386518997
commit
671648368a
@ -36,6 +36,11 @@ customized startup files for bots.
|
|||||||
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
if sys.version_info < (2, 3, 0):
|
||||||
|
sys.stderr.write('This program requires Python >= 2.3.0\n')
|
||||||
|
sys.exit(-1)
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import optparse
|
import optparse
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user