Skip to content

Commit

Permalink
fix: support temperature key (dclab 0.19.1.post2)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Dec 12, 2019
1 parent 8e570d0 commit e5e2143
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
2.0.0b7
- fix: disable close buttons of MDI subwindows on macOS (#29)
- fix: allow Shift+click on plot matrix element
- fix: support temperature key (dclab 0.19.1.post2)
2.0.0b6
- ref: move custom widgets to separate submodule (#24)
- fix: bad alignment when selecting "Plot" in QuickView (#31)
Expand Down
2 changes: 1 addition & 1 deletion shapeout2/gui/analysis/ana_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def format_config_key_value(section, key, value):
if dckey == key:
break
else:
raise ValueError("Unknwon key: [{}]: {}".format(section, key))
raise KeyError("Unknwon key [{}]: {}".format(section, key))
tip = ""
# Value formatting
if dctype == float: # pretty-print floats
Expand Down

0 comments on commit e5e2143

Please sign in to comment.