We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d626f commit 9497be3Copy full SHA for 9497be3
rmgpy/measure/output.py
@@ -118,10 +118,10 @@ def writeNetworkConfigurations(f, network):
118
"""
119
# Write isomer configurations
120
for isomer in network.isomers:
121
- f.write('isomer("{0}")\n\n'.format(isomer.label))
+ f.write('isomer("{0}")\n\n'.format(isomer))
122
# Write reactant configurations
123
for reactants in network.reactants:
124
- f.write('reactants("{0}", "{1}")\n\n'.format(reactants[0].label, reactants[1].label))
+ f.write('reactants("{0}", "{1}")\n\n'.format(reactants[0], reactants[1]))
125
# No need to write product configurations, as these are assumed
126
127
################################################################################
0 commit comments