mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Added version check to the wizard.
This commit is contained in:
parent
8b737865b5
commit
5a18914f96
@ -34,6 +34,10 @@ __revision__ = "$Id$"
|
||||
import os
|
||||
import sys
|
||||
|
||||
if sys.version_info < (2, 3, 0):
|
||||
sys.stderr.write('This program requires Python >= 2.3.0\n')
|
||||
sys.exit(-1)
|
||||
|
||||
import supybot
|
||||
|
||||
import supybot.fix as fix
|
||||
|
Loading…
Reference in New Issue
Block a user