Skip to content

Commit 25c2894

Browse files
committed
Merge pull request #2789 from SebDieBln/DbManager_FixMoveToSchema
[DbManager] Fix the 'MoveToSchema' functionality (fixes #14219)
2 parents ddbdcf8 + 0ab3653 commit 25c2894

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/db_manager/db_plugins

1 file changed

+1
-1
lines changed

python/plugins/db_manager/db_plugins/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def emptyTableActionSlot(self, item, action, parent):
463463

464464
def prepareMenuMoveTableToSchemaActionSlot(self, item, menu, mainWindow):
465465
""" populate menu with schemas """
466-
slot = lambda x: lambda: mainWindow.invokeCallback(self.moveTableToSchemaActionSlot, [x])
466+
slot = lambda x: lambda: mainWindow.invokeCallback(self.moveTableToSchemaActionSlot, x)
467467

468468
menu.clear()
469469
for schema in self.schemas():

0 commit comments

Comments
 (0)