From 64d39a9defc2d41e050bb30025a597d105a70a7c Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Thu, 13 Apr 2017 21:10:27 +0200 Subject: [PATCH] [DEBUG] correct pulseaudio (step 2) --- lutin/z_system/lutinSystem_Linux_pulse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lutin/z_system/lutinSystem_Linux_pulse.py b/lutin/z_system/lutinSystem_Linux_pulse.py index 9567020..320649e 100644 --- a/lutin/z_system/lutinSystem_Linux_pulse.py +++ b/lutin/z_system/lutinSystem_Linux_pulse.py @@ -34,13 +34,13 @@ class System(system.System): version = "" while offset < len(line) \ and line[offset] != '.': - version = line[offset] + version += line[offset] offset += 1 offset += 1 version2 = "" while offset < len(line) \ and line[offset] != '.': - version2 = line[offset] + version2 += line[offset] offset += 1 debug.verbose("detect version '" + version + "'") break;