Skip to content
This repository has been archived by the owner on Aug 31, 2019. It is now read-only.

Commit

Permalink
Remove val_raw usage (keyerror) - fixes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Lagg committed May 22, 2017
1 parent 29d89d6 commit 4f1f626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optf2/markup.py
Expand Up @@ -275,7 +275,7 @@ def generate_attribute_list(app, item, showlinks = False):

aid = attr["id"]
name = attr.get("name")
val = attr["val_raw"]
val = attr["val"]
try:
if (float(val).is_integer()):
val = "{0:d}".format(int(val))
Expand Down

0 comments on commit 4f1f626

Please sign in to comment.