Skip to content

Commit

Permalink
Re #10836 Modified ReductionWrapper to write closing bracket
Browse files Browse the repository at this point in the history
on separate line. This seems requested by Autoreduction server.
  • Loading branch information
abuts committed Jan 8, 2015
1 parent 69058fe commit 8c8a550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/scripts/Inelastic/Direct/ReductionWrapper.py
Expand Up @@ -40,7 +40,7 @@ def export_changed_values(self,FileName='reduce_vars.py'):
row = "{0}\'{1}\':{2}".format(str_wrapper,key,val)
f.write(row);
str_wrapper=',\n '
f.write("}\nadvanced_vars={\n")
f.write("\n}\nadvanced_vars={\n")

str_wrapper=' '
for key,val in self._advanced_properties.iteritems():
Expand All @@ -50,7 +50,7 @@ def export_changed_values(self,FileName='reduce_vars.py'):
row = "{0}\'{1}\':{2}".format(str_wrapper,key,val)
f.write(row);
str_wrapper=',\n '
f.write("}\n")
f.write("\n}\n")
f.close();


Expand Down

0 comments on commit 8c8a550

Please sign in to comment.