Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77079e1 commit 2e895b9Copy full SHA for 2e895b9
rtcqs.py
@@ -10,7 +10,7 @@
10
user = getpass.getuser()
11
wiki_url = "https://wiki.linuxaudio.org/wiki/system_configuration"
12
gui_status = False
13
-version = "0.3.0"
+version = "0.3.1"
14
headline = {}
15
kernel = {}
16
output = {}
@@ -178,7 +178,7 @@ def kernel_config_check():
178
status['kernel_config'] = True
179
output['kernel_config'] = "Valid kernel configuration found."
180
with gzip.open('/proc/config.gz', 'r') as f:
181
- kernel['config'] = [l.strip() for l in f.readlines()]
+ kernel['config'] = [l.strip().decode() for l in f.readlines()]
182
elif os.path.exists(f'/boot/config-{kernel["release"]}'):
183
184
0 commit comments