diff options
| author | Karel Kočí <cynerd@email.cz> | 2015-08-18 15:52:28 +0200 |
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2015-08-18 15:52:28 +0200 |
| commit | 4c42daf1d4c2551b8d3e41f7bd6b90482900dad4 (patch) | |
| tree | d1e1801d95b8f3811fc8cd789978617f53515d91 | |
| parent | 170aa9baa8580763361348545b49d435ec0b172b (diff) | |
| download | linux-conf-perf-4c42daf1d4c2551b8d3e41f7bd6b90482900dad4.tar.gz linux-conf-perf-4c42daf1d4c2551b8d3e41f7bd6b90482900dad4.tar.bz2 linux-conf-perf-4c42daf1d4c2551b8d3e41f7bd6b90482900dad4.zip | |
Fix wrong exception excepted in configurations script
| -rw-r--r-- | scripts/configurations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/configurations.py b/scripts/configurations.py index f7f1694..428e214 100644 --- a/scripts/configurations.py +++ b/scripts/configurations.py @@ -129,7 +129,7 @@ def __calchash__(con): try: if con[c]: cstr += c - except ValueError: + except KeyError: pass # Add missing |
