]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/commitdiff
Changed Python version in the file headers to 3.4.
authorphilipp <philipp@7aebc617-e5e2-0310-91dc-80fb5f6d2477>
Thu, 27 Jul 2017 21:59:02 +0000 (21:59 +0000)
committerphilipp <philipp@7aebc617-e5e2-0310-91dc-80fb5f6d2477>
Thu, 27 Jul 2017 21:59:02 +0000 (21:59 +0000)
git-svn-id: http://www.winterrodeln.org/svn/wradmin/trunk@2665 7aebc617-e5e2-0310-91dc-80fb5f6d2477

wradmin/controllers/coordtool.py
wradmin/controllers/gasthaus.py
wradmin/controllers/map.py
wradmin/controllers/rodelbahn.py
wradmin/controllers/wrgpxtool.py
wradmin/lib/mediawiki.py
wradmin/lib/wrgpx.py
wradmin/model/validators.py
wradmin/tests/test_lib.py

index 572a7cd51c0aeedd7e74b2737d78ed1d3a8f6fe5..1b77e06ba8f8a261f1c9e231efebb95f59c6f77e 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 import logging
 
 from pylons import request, response, session, url, tmpl_context as c
index e68f711b1c9bc6bb1d659d7f28b4d71e18ea3ccb..a769a9b179de348e655a82b8ef7f2fd79614f5c7 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 import logging
 
 from pylons import request, response, session, url, tmpl_context as c
index 845a2ad058639c672f0ccf79d49c68f5e9f316ab..a10b40f1098337f8f039c7ec5e23240d9adadc0a 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 from pylons import request, response, session, url, tmpl_context as c
 from pylons.controllers.util import abort, redirect
 
index 92ebff776d9f19cc67c72f2d642c0670a1a7d529..7aea8f2e8224b24dec01c70103b0f5899a11a534 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 import logging
 
 from pylons import request, response, session, url, tmpl_context as c
index 17e6bd02ab69fdd2f259de3c0924c2f55e738f3a..c23bba7804dfedf5ff7862be6d5835d7f9801758 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 import logging
 
 from pylons import request, response, session, url, tmpl_context as c
index 23c8814008159fa2a0fffc2e91d02672c7d96d0a..27b2130a61c9d876532f3623d2f438b9f91a7fda 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 # $Id$
 "MediaWiki communication functions"
 import datetime
index 742a3737db89f52b76efb40f0e2cbbb2005d0293..4733501974080d30bb7e7f8a0e9e0234fc1b3afa 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 """Library to handle WRGPX files.
 A WRGPX file (WR stands for Winterrodeln) is a normal GPX file
 that follows several conventions so that it can be rendered to
index 28f25271e32f933d5b3822ff5bfdf9b910956db6..dd921768be5c6fe42440bc19c0c8c89983217388 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 """This file contains "validators" that convert between string and python (database) representation
 of properties used in the "Rodelbahnbox" and "Gasthausbox".
 The "to_python" method has to get a unicode argument.
index f6ef728274ff60f3fcf47030e16addec4d15a5bf..f73fc537c865658fdf62233cbdc77f942a05fca6 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python2.7
+#!/usr/bin/python3.4
 # $Id$
 import unittest
 import wradmin.lib