Added version check to the wizard.

This commit is contained in:
Jeremy Fincher 2004-08-28 12:40:57 +00:00
parent 8b737865b5
commit 5a18914f96
1 changed files with 4 additions and 0 deletions

View File

@ -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