[Bf-blender-cvs] [6e131ce] master: Call to python3 for stand-alone scripts

Campbell Barton noreply at git.blender.org
Mon Jul 25 21:17:13 CEST 2016


Commit: 6e131ce0750052ef5b3cf835b5bcb2b0a047e89d
Author: Campbell Barton
Date:   Tue Jul 26 05:13:39 2016 +1000
Branches: master
https://developer.blender.org/rB6e131ce0750052ef5b3cf835b5bcb2b0a047e89d

Call to python3 for stand-alone scripts

Needed since Debian & FreeBSD both move away from keeping a synlink to `python`.

===================================================================

M	build_files/package_spec/build_archive.py
M	doc/manpage/blender.1.py
M	release/bin/blender-thumbnailer.py
M	release/datafiles/ctodata.py
M	release/scripts/modules/blend_render_info.py

===================================================================

diff --git a/build_files/package_spec/build_archive.py b/build_files/package_spec/build_archive.py
index 6a7ec8a..bd00984 100755
--- a/build_files/package_spec/build_archive.py
+++ b/build_files/package_spec/build_archive.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # <pep8 compliant>
 
diff --git a/doc/manpage/blender.1.py b/doc/manpage/blender.1.py
index cdd2d7c..5285671 100755
--- a/doc/manpage/blender.1.py
+++ b/doc/manpage/blender.1.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ##### BEGIN GPL LICENSE BLOCK #####
 #
diff --git a/release/bin/blender-thumbnailer.py b/release/bin/blender-thumbnailer.py
index fe5d462..5d2dd95 100755
--- a/release/bin/blender-thumbnailer.py
+++ b/release/bin/blender-thumbnailer.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ##### BEGIN GPL LICENSE BLOCK #####
 #
diff --git a/release/datafiles/ctodata.py b/release/datafiles/ctodata.py
index 079f6c3..8c1d4a4 100755
--- a/release/datafiles/ctodata.py
+++ b/release/datafiles/ctodata.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
 # ***** BEGIN GPL LICENSE BLOCK *****
diff --git a/release/scripts/modules/blend_render_info.py b/release/scripts/modules/blend_render_info.py
index a62eaee..5e4ee0e 100755
--- a/release/scripts/modules/blend_render_info.py
+++ b/release/scripts/modules/blend_render_info.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ##### BEGIN GPL LICENSE BLOCK #####
 #




More information about the Bf-blender-cvs mailing list