Browse Source

aloop-daemon: Fix >= 3.8 kernel detection, closes #67

tags/v0.9.0
falkTX 11 years ago
parent
commit
f78060e999
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/cadence_aloop_daemon.py

+ 1
- 1
src/cadence_aloop_daemon.py View File

@@ -35,7 +35,7 @@ import jacklib

global reactivateCounter
reactivateCounter = -1
isKernelGood = os.uname()[2] >= "3.8"
isKernelGood = [int(i) for i in os.uname()[2].split(".", 2)[:2]] >= [3,8]

# --------------------------------------------------
# Global loop check


Loading…
Cancel
Save