diff options
author | Karel Kočí <cynerd@email.cz> | 2015-05-14 22:51:15 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-05-14 22:51:15 +0200 |
commit | 2e9ef6384bf9a9b599a5f7438d8772fcbccb760f (patch) | |
tree | e2788bcffdb529cb8a216ed69cd247de0dd52cdd | |
parent | 932319b3520588445ea2cf47888e086b540c5331 (diff) | |
download | linux-conf-perf-2e9ef6384bf9a9b599a5f7438d8772fcbccb760f.tar.gz linux-conf-perf-2e9ef6384bf9a9b599a5f7438d8772fcbccb760f.tar.bz2 linux-conf-perf-2e9ef6384bf9a9b599a5f7438d8772fcbccb760f.zip |
Fix error in utils script
-rw-r--r-- | scripts/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/utils.py b/scripts/utils.py index 060aa3e..74cc80c 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -107,7 +107,7 @@ def config_strtoint(str): """Reads list of configured symbols from string """ rtn = [] - for s in str.split(sep=' '): + for s in str.rstrip().split(sep=' '): rtn.append(int(s)) try: rtn.remove(0) |