Skip to content

Commit

Permalink
Patch mssql check
Browse files Browse the repository at this point in the history
  • Loading branch information
jlubken committed Mar 17, 2021
1 parent a552961 commit 97d46df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsdk/mssql.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def check(self, cur, exceptions=(DatabaseError, InterfaceError)):
logger.info(self.EXTANT, statement)
cur.execute(statement)
for row in cur:
n = row["n"]
n, *_ = row
assert n == 1
continue
# pylint: disable=catching-non-exception
Expand Down

0 comments on commit 97d46df

Please sign in to comment.