From ca806ee7d28c534943233a04ece2530dd916f784 Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Fri, 27 Nov 2015 17:13:29 +0100 Subject: [PATCH] Correct bug of graphic display for 7.7.0. --- generator/OpenturnsSTD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/OpenturnsSTD.py b/generator/OpenturnsSTD.py index 12f79930..f2659e1c 100644 --- a/generator/OpenturnsSTD.py +++ b/generator/OpenturnsSTD.py @@ -1391,7 +1391,7 @@ class STDGenerateur : txt = headerSTD % self.OpenTURNS_path txt += "dist = %s\n" % apply( STDGenerateur.__dict__[ loi[ 'Kind' ] ], (self, loi) ) txt += "graph = dist.drawPDF()\n" - txt += "graph.draw( '%s/', '%s' , 640, 480, GraphImplementation.PNG)\n" % (chemin, fichier) + txt += "graph.draw( '%s/%s' , 640, 480, GraphImplementation.PNG)\n" % (chemin, fichier) txt += footerSTD return txt -- 2.39.2