summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-12-04 10:20:04 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-12-04 10:20:04 +0100
commit82e91b58b523b3e64c981780aa32e946d1d7666b (patch)
treef6e6219009bc29fc0f51a4658cf9e6224a040b1e
parentd3ca442c38234d5080496c3e68067f131d0fa650 (diff)
And some more
-rw-r--r--cerbero/utils/msbuild.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cerbero/utils/msbuild.py b/cerbero/utils/msbuild.py
index 5c3b317..5da1281 100644
--- a/cerbero/utils/msbuild.py
+++ b/cerbero/utils/msbuild.py
@@ -52,10 +52,10 @@ class MSBuild(object):
def get_vs_path():
reg = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)
key = winreg.OpenKey(reg,
- r"SOFTWARE\Microsoft\VisualStudio\SxS\VS7")
+ r"SOFTWARE\Microsoft\VisualStudio\SxS\VC7")
path = winreg.QueryValueEx(key, '10.0')[0]
path = path.rsplit('\\', 1)[0] + '\\Common7\\IDE'
- return fix_winpath(path)
+ return path
def _call(self, command):
properties = self._format_properties()