qtcreator/netbeans generators: fix for error getting project info when svn isnt found (common on windows)

This commit is contained in:
Campbell Barton
2012-04-15 09:34:57 +00:00
parent 637387b8ac
commit 5c4a7171fe

View File

@@ -231,8 +231,13 @@ def project_name_get(path, fallback="Blender", prefix="Blender_"):
return fallback
import subprocess
info = subprocess.Popen(["svn", "info", path],
stdout=subprocess.PIPE).communicate()[0]
try:
info = subprocess.Popen(["svn", "info", path],
stdout=subprocess.PIPE).communicate()[0]
except:
# possibly 'svn' isnt found/installed
return fallback
# string version, we only want the URL
info = info.decode(encoding="utf-8", errors="ignore")