diff options
| author | root <root@turin.home> | 2022-02-04 18:07:47 +0000 |
|---|---|---|
| committer | root <root@turin.home> | 2022-02-04 18:07:47 +0000 |
| commit | 6671090e31ab30711f169abfb61d880b50ba27d8 (patch) | |
| tree | 8952c13c358694c423f67e5e1e09223ed090a326 /sql.py | |
| parent | 0e23673e015a5261019a151f22b419f4c80b7e8d (diff) | |
Dictionary class. Reformat.
Diffstat (limited to 'sql.py')
| -rw-r--r-- | sql.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,9 +19,9 @@ class db: con = sqlite3.connect(self.dbfile) cur = con.cursor() if param == None: - cur.execute(cmd) + cur.execute(cmd) else: - cur.execute(cmd, param) + cur.execute(cmd, param) con.commit() con.close() |
