diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-13 13:24:20 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-13 13:24:20 +0200 |
commit | 91829f8e24dedf21fa851752cd91c2a29a0f1d57 (patch) | |
tree | 9f5c11ec15ac6a3cc37fbd3a83facb7de1a364d9 /scripts/solution.py | |
parent | 4a01b7fc2bbabcfe5da7df6cbc3e0d4cde80a509 (diff) | |
download | linux-conf-perf-91829f8e24dedf21fa851752cd91c2a29a0f1d57.tar.gz linux-conf-perf-91829f8e24dedf21fa851752cd91c2a29a0f1d57.tar.bz2 linux-conf-perf-91829f8e24dedf21fa851752cd91c2a29a0f1d57.zip |
Fix python scripts to work with parse_kconfig
Diffstat (limited to 'scripts/solution.py')
-rw-r--r-- | scripts/solution.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/solution.py b/scripts/solution.py index 99e8418..880b988 100644 --- a/scripts/solution.py +++ b/scripts/solution.py @@ -19,7 +19,7 @@ def generate(): """ # Check if rules_file exist. If it was generated. if not os.path.isfile(conf.rules_file): - raise Exception("Rules file missing. Run kconfig_parse and check ecistence of " + rules_file) + raise Exception("Rules file missing. Run parse_kconfig and check ecistence of " + rules_file) w_file = tempfile.NamedTemporaryFile(delete=False) # Join files to one single temporary file |