Compare commits

..

No commits in common. "8e56689a8f0815c019801e695d6d909f874f1269" and "9ae081520053f161ad83da993bcca4d3bc4ab561" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "voicemeeter-api"
version = "2.5.4"
version = "2.5.3"
description = "A Python wrapper for the Voiceemeter API"
authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT"

View File

@ -31,7 +31,7 @@ def get_vmpath():
with winreg.OpenKey(
winreg.HKEY_LOCAL_MACHINE, r"{}".format("\\".join((REG_KEY, VM_KEY)))
) as vm_key:
return winreg.QueryValueEx(vm_key, r"UninstallString")[0].strip('"')
return winreg.QueryValueEx(vm_key, r"UninstallString")[0]
try: