- {{numberOfcallsites}} call sites.
+
+ {{numberOfcallsites}} call sites.
diff --git a/app/src/html/runtimeScatterplot.html b/app/src/html/runtimeScatterplot.html
index 3486ebf2..9b202988 100644
--- a/app/src/html/runtimeScatterplot.html
+++ b/app/src/html/runtimeScatterplot.html
@@ -10,6 +10,9 @@
{{ message }}
+
+ Corr. coef. = {{corr_coef}}.
+
\ No newline at end of file
diff --git a/callflow/datastructures/supergraph.py b/callflow/datastructures/supergraph.py
index b639c941..068a4133 100644
--- a/callflow/datastructures/supergraph.py
+++ b/callflow/datastructures/supergraph.py
@@ -78,8 +78,9 @@ def get_module_name(self, callsite):
Return:
module name (str) - Returns the module name
"""
- if callsite in self.props["callsite_module_map"]:
- return self.props["callsite_module_map"][callsite]
+ if "callsite_module_map" in self.props:
+ if callsite in self.props["callsite_module_map"]:
+ return self.props["callsite_module_map"][callsite]
return self.gf.lookup_with_name(callsite)["module"].unique()[0]