Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wxGUI: Improve exception handling specificity in location wizard #4953

Merged
merged 2 commits into from
Jan 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update
Arohan Ajit authored and Arohan Ajit committed Jan 17, 2025
commit 73acfccb90f7799ca7550d022d3b60a8f7cc8ac3
2 changes: 1 addition & 1 deletion gui/wxpython/location_wizard/wizard.py
Original file line number Diff line number Diff line change
@@ -1966,7 +1966,7 @@ def OnSearch(self, event):
self.epsgcode, self.epsgdesc, self.epsgparams = self.epsglist.Search(
index=[0, 1, 2], pattern=value
)
except (IndexError, ValueError):
except (IndexError, ValueError): # -> no item found
self.epsgcode = None
self.epsgdesc = self.epsgparams = ""
self.tcode.SetValue("")