Skip to content

Commit

Permalink
Re #6516 minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed May 7, 2013
1 parent c994ea6 commit cc0e2b8
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def _load_data(filename, output_ws):
monitor = 0.0
timer = 0.0
for i in range(len(data_file)):
output_str += "Loaded %s\n" % data_file[i]
if i==0:
output_str += _load_data(data_file[i], workspace)
else:
Expand Down Expand Up @@ -250,7 +249,7 @@ def PyExec(self):
alg.setProperty("ReductionProperties", property_manager_name)
alg.execute()
if alg.existsProperty("OutputMessage"):
output_msg += alg.getProperty("OutputMessage").value
output_msg += alg.getProperty("OutputMessage").value+'\n'

# Compute I(qx,qy)
iqxy_output = None
Expand All @@ -265,7 +264,7 @@ def PyExec(self):
alg.setProperty("ReductionProperties", property_manager_name)
alg.execute()
if alg.existsProperty("OutputMessage"):
output_msg += alg.getProperty("OutputMessage").value
output_msg += alg.getProperty("OutputMessage").value+'\n'

# Verify output directory and save data
if "OutputDirectory" in property_list:
Expand Down

0 comments on commit cc0e2b8

Please sign in to comment.