Skip to content

Commit

Permalink
Fix DBs not opening
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrik Koski committed Apr 15, 2024
1 parent 00f530a commit 1ea1f1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spine_items/data_store/data_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, name, description, x, y, toolbox, project, url):
def get_db_map_for_ds(self):
"""Returns the db map for the Data Store"""
if self._url.get("dialect"):
return self._toolbox.db_mngr.get_db_map(self.sql_alchemy_url(), self._logger, self.name)
return self._toolbox.db_mngr.get_db_map(self.sql_alchemy_url(), self._logger, codename=self.name)
return None

@staticmethod
Expand Down

0 comments on commit 1ea1f1f

Please sign in to comment.