From ebad639546a6bb22f3b92d40e166a775584823b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=28Charybdis=29?=
 <stephane.adjemian@univ-lemans.fr>
Date: Wed, 11 Jul 2018 11:03:15 +0200
Subject: [PATCH] Bug fix (parenthesis mismatch).

---
 matlab/get_lhs_and_rhs.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/matlab/get_lhs_and_rhs.m b/matlab/get_lhs_and_rhs.m
index c7100deb5..15932a5a6 100644
--- a/matlab/get_lhs_and_rhs.m
+++ b/matlab/get_lhs_and_rhs.m
@@ -44,7 +44,7 @@ end
 if original
     jsonfil = loadjson([DynareModel.fname filesep() 'model' filesep() 'json' filesep() 'modfile-original.json']);
 else
-    jsonfil = loadjson([DynareModel.fname filesep() 'model' filesep() 'json' filesep() 'modfile.json']));
+    jsonfil = loadjson([DynareModel.fname filesep() 'model' filesep() 'json' filesep() 'modfile.json']);
 end
 jsonmod = jsonfil.model;
 jsoneqn = getEquationsByTags(jsonmod, 'name', eqname);
-- 
GitLab