diff options
author | Karel Kočí <cynerd@email.cz> | 2015-08-18 10:55:11 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-08-18 10:55:11 +0200 |
commit | 21faeb3d888ebb9225e00bc178143e57256d4cf9 (patch) | |
tree | 173a6e1e06cf274de33d6d98513b87cb36dffc98 | |
parent | 125a8b082b10348dfeb15b25e6697f770d1d20f4 (diff) | |
download | linux-conf-perf-21faeb3d888ebb9225e00bc178143e57256d4cf9.tar.gz linux-conf-perf-21faeb3d888ebb9225e00bc178143e57256d4cf9.tar.bz2 linux-conf-perf-21faeb3d888ebb9225e00bc178143e57256d4cf9.zip |
Fix database add_configsort
No attribute supplied when executed sql command.
-rw-r--r-- | scripts/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/database.py b/scripts/database.py index c4f0a60..82931b0 100644 --- a/scripts/database.py +++ b/scripts/database.py @@ -146,7 +146,7 @@ class database: ps = self.db.prepare("""INSERT INTO configopt (configopt) VALUES ($1) """) - ps() + ps(configopt) def get_configsort(self): "Returns sorted list of all configuration options" |