summarylogtreecommitdiffstats
path: root/import_catkin_packages.py
diff options
context:
space:
mode:
authorBenjamin Chrétien2014-06-07 16:09:52 +0200
committerBenjamin Chrétien2015-06-20 02:25:12 +0900
commit4f1e121c80a28e825a7bff8f91c3a863ebd40acf (patch)
tree31d1ba47db90e467ee7abb6c0943e655447d96a5 /import_catkin_packages.py
parent485d13f74f8a958c0d3b624ec827ce42dbcc3316 (diff)
downloadaur-4f1e121c80a28e825a7bff8f91c3a863ebd40acf.tar.gz
indigo: use Python 2 rather than Python 3.
Since most packages are unlikely to be Python 3 ready before the next ROS distribution, we stick to Python 2.
Diffstat (limited to 'import_catkin_packages.py')
-rwxr-xr-ximport_catkin_packages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/import_catkin_packages.py b/import_catkin_packages.py
index 6aa4cf204870..7ab7b3ec8148 100755
--- a/import_catkin_packages.py
+++ b/import_catkin_packages.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
@@ -624,7 +624,7 @@ def main():
default_python_version = {"fuerte": "2.7",
"groovy": "2.7",
"hydro": "2.7",
- "indigo": "3.4"}
+ "indigo": "2.7"}
python_version = default_python_version[options.distro]
if options.python_version != "":