diff options
author | nilshah98 | 2019-06-12 20:47:35 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-13 12:16:15 +0530 |
commit | 17eaff1e9ac378ef91115848c2e6a7ddabda49c2 (patch) | |
tree | 8083cec937bb4fafb4b69b2c20598e81a388e0fd /src/ngspicetoModelica | |
parent | 8bc2c85b5892c38ecd17449cb7b1a0f0617edcac (diff) | |
download | eSim-17eaff1e9ac378ef91115848c2e6a7ddabda49c2.tar.gz eSim-17eaff1e9ac378ef91115848c2e6a7ddabda49c2.tar.bz2 eSim-17eaff1e9ac378ef91115848c2e6a7ddabda49c2.zip |
double brackets => single brackets
Diffstat (limited to 'src/ngspicetoModelica')
-rw-r--r-- | src/ngspicetoModelica/NgspicetoModelica.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngspicetoModelica/NgspicetoModelica.py b/src/ngspicetoModelica/NgspicetoModelica.py index 3efee506..1c5e754c 100644 --- a/src/ngspicetoModelica/NgspicetoModelica.py +++ b/src/ngspicetoModelica/NgspicetoModelica.py @@ -30,7 +30,7 @@ class NgMoConverter: f = open(filename) except Exception as e: print("Error in opening file") - print((str(e))) + print(str(e)) sys.exit() else: print(filename + " does not exist") |