diff -r 2ed9ff826d03 -r ba0dd2ec6dc4 svghmi/svghmi.py --- a/svghmi/svghmi.py Mon Sep 30 13:26:11 2019 +0200 +++ b/svghmi/svghmi.py Wed Oct 02 11:31:02 2019 +0200 @@ -11,6 +11,7 @@ import shutil from itertools import izip, imap from pprint import pprint, pformat +import hashlib import wx @@ -229,7 +230,7 @@ "item_count": item_count, "var_access_code": targets.GetCode("var_access.c"), "PLC_ticktime": self.GetCTR().GetTicktime(), - "hmi_hash_int": ",".join(map(str,hmi_tree_root.hash())) + "hmi_hash_ints": ",".join(map(str,hmi_tree_root.hash())) } gen_svghmi_c_path = os.path.join(buildpath, "svghmi.c")