Skip to content

Commit

Permalink
fix typo in variable being yielded to caller
Browse files Browse the repository at this point in the history
  • Loading branch information
sccolbert committed Apr 9, 2013
1 parent a16b384 commit 39f6bae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enaml/wx/wx_main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def dock_panes(self):
for d in self.declaration.dock_panes():
w = d.proxy.widget
if w:
yield d
yield w

def tool_bars(self):
""" Get the QToolBar widgets defined for the main window.
Expand All @@ -409,7 +409,7 @@ def tool_bars(self):
for d in self.declaration.tool_bars():
w = d.proxy.widget
if w:
yield d
yield w

#--------------------------------------------------------------------------
# Child Events
Expand Down

0 comments on commit 39f6bae

Please sign in to comment.