diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2014-05-13 14:04:10 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2014-05-13 14:04:10 +0000 |
commit | 31e5e17b687155d8f609b72ec5a33c4b14fc8295 (patch) | |
tree | 27f9892ac743ce88ca5ff7aab86ea9e3f76457a7 /scripts | |
parent | ab047cfb36d6dc94db2eaf669da566029ce049b7 (diff) |
drop python2.5 dependency
if a given host (e.g. apt.puredata.info) only has python2.5 available, they should call the interpreter explicitely
svn path=/trunk/; revision=17306
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/create-latest-build-listing.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/auto-build/create-latest-build-listing.py b/scripts/auto-build/create-latest-build-listing.py index c9d0172d..90a7e7c2 100755 --- a/scripts/auto-build/create-latest-build-listing.py +++ b/scripts/auto-build/create-latest-build-listing.py @@ -1,5 +1,7 @@ -#!/usr/bin/python2.5 -# this is meant to run on apt.puredata.info, which only has python2.5 +#!/usr/bin/python +# apt.puredata.info had only python2.5 available: +# but this is solved by calling this script explicitely from python2.5 +# just make sure that you don't use any newer python-features...:-) import string import glob |