Skip to content

Commit

Permalink
fixed errors from my previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pehcha committed Jun 2, 2014
1 parent 4354883 commit 1d16689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atomac/ldtpd/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def multiselect(self, window_name, object_name, row_text_list, partial_match = F
try:
window=self._get_front_most_window()
except (IndexError, ):
window=self._get_any_window()for row_text in row_text_list:
window=self._get_any_window()
for row_text in row_text_list:
selected = False
for cell in object_handle.AXRows:
Expand Down Expand Up @@ -156,7 +156,7 @@ def multiremove(self, window_name, object_name, row_text_list, partial_match = F
try:
window=self._get_front_most_window()
except (IndexError, ):
window=self._get_any_window()for row_text in row_text_list:
window=self._get_any_window()
for row_text in row_text_list:
selected = False
for cell in object_handle.AXRows:
Expand Down

0 comments on commit 1d16689

Please sign in to comment.