Skip to content

Commit a26e7a4

Browse files
authoredApr 9, 2017
Merge pull request #27 from ISosnovik/master
fix bugs
2 parents 40d55b8 + ce6f453 commit a26e7a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎topy/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='ToPy',
6-
version='0.3.1',
6+
version='0.3.2',
77
description='Topology optimization with Python',
88
author='William Hunter',
99
url='https://github.com/williamhunter/topy',

‎topy/topology.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __init__(self, config=None, topydict={}, pcount=0,
4747
self.svtfrac = svtfrac
4848

4949
if config:
50-
self.topydict = config2dict(config)
50+
self.topydict = config2dict(config.copy())
5151
else:
5252
self.topydict = topydict # Store tpd file data in dictionary
5353

0 commit comments

Comments
 (0)
Please sign in to comment.