Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-01 12:29:27 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-01 12:29:27 +0400
commit4418396a456018fc1420cf309d1727fee0260e56 (patch)
tree09d8009095283f9b2ff090fcd5f963d9c3710863 /build_files/scons/tools
parentb85f779355b784675d2e948c1b92a32794554dc6 (diff)
Change <UNKNOWN> to -UNKNOWN- so exporters can be happy too, when a build was created without svnversion (or from export).
Diffstat (limited to 'build_files/scons/tools')
-rw-r--r--build_files/scons/tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/scons/tools/Blender.py b/build_files/scons/tools/Blender.py
index 10583c03fac..cdfd1e10656 100644
--- a/build_files/scons/tools/Blender.py
+++ b/build_files/scons/tools/Blender.py
@@ -282,7 +282,7 @@ def buildinfo(lenv, build_type):
build_time = time.strftime ("%H:%M:%S")
build_rev = os.popen('svnversion').read()[:-1] # remove \n
if build_rev == '':
- build_rev = '<UNKNOWN>'
+ build_rev = '-UNKNOWN-'
if lenv['BF_DEBUG']:
build_type = "Debug"
else: