From 4bda190ee8bd5196ff05e595234d108137e31617 Mon Sep 17 00:00:00 2001 From: Nick Horelik Date: Wed, 12 Nov 2014 19:29:05 -0500 Subject: [PATCH] Fixed plot filename issue --- src/input_xml.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_xml.F90 b/src/input_xml.F90 index 340e430c78..2adda87a73 100644 --- a/src/input_xml.F90 +++ b/src/input_xml.F90 @@ -2730,7 +2730,7 @@ contains end select ! Set output file path - filename = "plot" + filename = trim(to_str(pl % id)) // "_plot" if (check_for_node(node_plot, "filename")) & call get_node_value(node_plot, "filename", filename) select case (pl % type)