Skip to content

Commit

Permalink
Remove unrequired cast
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 23, 2017
1 parent 56a4607 commit 669f4aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/connector.py
Expand Up @@ -80,7 +80,7 @@ def _execute(self, cursor, sql):
if cursor is None:
cursor = self._get_cursor()
try:
cursor.execute(str(sql))
cursor.execute(sql)

except self.connection_error_types() as e:
raise ConnectionError(e)
Expand Down

0 comments on commit 669f4aa

Please sign in to comment.