Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2789 from SebDieBln/DbManager_FixMoveToSchema
[DbManager] Fix the 'MoveToSchema' functionality (fixes #14219)
  • Loading branch information
jef-n committed Feb 14, 2016
2 parents ddbdcf8 + 0ab3653 commit 25c2894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/plugin.py
Expand Up @@ -463,7 +463,7 @@ def emptyTableActionSlot(self, item, action, parent):

def prepareMenuMoveTableToSchemaActionSlot(self, item, menu, mainWindow):
""" populate menu with schemas """
slot = lambda x: lambda: mainWindow.invokeCallback(self.moveTableToSchemaActionSlot, [x])
slot = lambda x: lambda: mainWindow.invokeCallback(self.moveTableToSchemaActionSlot, x)

menu.clear()
for schema in self.schemas():
Expand Down

0 comments on commit 25c2894

Please sign in to comment.