Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNikos Kouremenos <kourem@gmail.com>2006-10-08 17:18:32 +0400
committerNikos Kouremenos <kourem@gmail.com>2006-10-08 17:18:32 +0400
commitddeb9dfe8e5467f37ff747b56f70dfbcb69b274c (patch)
tree5640bc9a946d50f7567f21bf70b49605a2f885e4 /src
parent7ab63bed0fdd7b17aac1ad76e5486e02d3f84447 (diff)
execute not executescript
Diffstat (limited to 'src')
-rw-r--r--src/common/optparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/optparser.py b/src/common/optparser.py
index e181f516e..fd0bfd73c 100644
--- a/src/common/optparser.py
+++ b/src/common/optparser.py
@@ -342,7 +342,7 @@ class OptionsParser:
for show in status:
cur.execute('update logs set show = ? where show = ?;', (status[show],
show))
- cur.executescript('update logs set show = NULL where show not in (0, 1, 2, 3, 4, 5);')
+ cur.execute('update logs set show = NULL where show not in (0, 1, 2, 3, 4, 5);')
con.commit()
con.close()
gajim.config.set('version', '0.10.1.5')