Skip to content

Commit

Permalink
Fix syntax error in db.py
Browse files Browse the repository at this point in the history
  • Loading branch information
greghaynes committed Mar 28, 2010
1 parent 0da3111 commit 2c9f02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyscripts/xsbs/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def reconnect(self):
self.connect()
def session(self):
return self.m_session
def query(self, *args, **kwargs)
def query(self, *args, **kwargs):
try:
q = self.session().query(*args, **kwargs)
except (OperationalError, InvalidRequestError):
Expand Down

0 comments on commit 2c9f02e

Please sign in to comment.