Skip to content

Commit

Permalink
adopted the most generic exception
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Jan 20, 2024
1 parent 879ecae commit 19f7ef2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions freeze/SoundSpeedManager.spec
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ ssm_data = collect_pkg_data('hyo2.soundspeedmanager')
sss_data = collect_pkg_data('hyo2.soundspeedsettings')
try:
sdm_data = collect_pkg_data('hyo2.surveydatamonitor')
except ValueError:
print("skipping hyo2.surveydatamonitor")
except Exception as e:
print("skipping hyo2.surveydatamonitor: %s" % e)
sdm_data = TOC()

icon_file = os.path.normpath(os.path.join(os.getcwd(), 'freeze', 'SoundSpeedManager.ico'))
Expand Down

0 comments on commit 19f7ef2

Please sign in to comment.