Skip to content

Commit

Permalink
Get proper wrapper when requesting it by row
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Aug 4, 2019
1 parent cb2f0e4 commit 920b848
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphs/gui/lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def getWrapper(self, row):
if row == -1:
return None
try:
return self.__wrappers[row]
return self.wrappers[row]
except IndexError:
return None

Expand Down

0 comments on commit 920b848

Please sign in to comment.