Skip to content

Commit

Permalink
v1.17.1 fix character updates through options view
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Nov 21, 2019
1 parent d729125 commit 8721a67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions meleeuploader/viewers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ def __init__(self, pos, options):
def __update_data(self, row, col, item):
if col == 1:
var_name = self._oview.get_value(0, row)
if "char" in var_name:
item = item.split("/")
self.options.__dict__[var_name] = item
self.parent._MeleeUploader__update_qview(self.pos, self.options)
print(f"{var_name} in queue item {self.pos} was updated to {item}")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from os import path

here = path.abspath(path.dirname(__file__))
version = '1.17.0'
version = '1.17.1'

long_des = ""
with open(path.join(here, 'README.md')) as f:
Expand Down

0 comments on commit 8721a67

Please sign in to comment.