Skip to content

Commit

Permalink
Drop support for Python 2.5
Browse files Browse the repository at this point in the history
Also for SABHelper.py
  • Loading branch information
shypike committed Jul 28, 2015
1 parent 17130c5 commit 68b44a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SABHelper.py
Expand Up @@ -16,8 +16,8 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

import sys
if sys.version_info < (2,5):
print "Sorry, requires Python 2.5 or higher."
if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0):
print "Sorry, requires Python 2.6 or 2.7."
sys.exit(1)

import os
Expand Down

0 comments on commit 68b44a7

Please sign in to comment.