Skip to content
Snippets Groups Projects

Fix Update

Merged Edileuton Henrique de Oliveira requested to merge fix-update into master
+ 26
25
Compare changes
  • Side-by-side
  • Inline
Files
@@ -37,7 +37,8 @@ def getRegistryValue(key, subkey, value):
key = getattr(_winreg, key)
handle = _winreg.OpenKey(key, subkey)
(value, type) = _winreg.QueryValueEx(handle, value)
return value
return value.split('\n')[0]
def getPointInfo(info):
ptInfoFile = open(DATASIDPATH + "\\conf\\pointInfo", "r")
Loading