Skip to content

Commit

Permalink
[DbManager] Fix the 'MoveToSchema' functionality (fixes #14219)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebDieBln committed Feb 13, 2016
1 parent 7489af8 commit 0ab3653
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 0ab3653

Please sign in to comment.