Browse Source

Fix running discovery with processing checks enabled

tags/1.9.5
falkTX 10 years ago
parent
commit
02f3b64e9a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      source/carla_backend.py

+ 2
- 1
source/carla_backend.py View File

@@ -1348,7 +1348,8 @@ class CarlaHostMeta(QObject):

# unset environment variable
def unsetenv(self, key):
environ.pop(key)
if environ.get(key) is not None:
environ.pop(key)

if WINDOWS:
keyrm = "%s=" % key


Loading…
Cancel
Save