diff options
author | simo <simo> | 2005-12-18 05:10:04 +0000 |
---|---|---|
committer | simo <simo> | 2005-12-18 05:10:04 +0000 |
commit | adcf3cecd0071544a855dc72295f0f3fc9aab3cd (patch) | |
tree | 4cd027a6dbc216ab1ae5cf2b49634e9d7560ad0b /tupkg/server/tupkgs | |
parent | 2d59d0d873d381a35353fc45a21388fdcfb43c03 (diff) | |
download | aurweb-adcf3cecd0071544a855dc72295f0f3fc9aab3cd.tar.xz |
fixed persistent mysql connections in tupkgupdate
Diffstat (limited to 'tupkg/server/tupkgs')
-rwxr-xr-x | tupkg/server/tupkgs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tupkg/server/tupkgs b/tupkg/server/tupkgs index 2d7205b..3b2c510 100755 --- a/tupkg/server/tupkgs +++ b/tupkg/server/tupkgs @@ -132,7 +132,7 @@ class ClientSocket(threading.Thread): MySQLdb.escape_string(encpw)+ "'") dbconn.close() - except MySQLdb.OperationalError: + except : self.sendMsg("result=SQLERR") return 0 if q.rowcount == 0: |