changeset 5:a410fb6c43fa draft

Minor changes
author hackdna
date Mon, 13 May 2013 16:05:56 -0400
parents ccf0e1ca6fe9
children 66d49d9635b1
files refinery_test_1-1.xml refinery_test_tool.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/refinery_test_1-1.xml	Mon May 13 14:49:03 2013 -0400
+++ b/refinery_test_1-1.xml	Mon May 13 16:05:56 2013 -0400
@@ -15,7 +15,7 @@
     </inputs>
 
     <outputs>
-        <data format="txt" name="output_file" label="Ouput file"/>
+        <data format="txt" name="output_file" label="Output file"/>
     </outputs>
 
     <stdio>
--- a/refinery_test_tool.py	Mon May 13 14:49:03 2013 -0400
+++ b/refinery_test_tool.py	Mon May 13 16:05:56 2013 -0400
@@ -29,7 +29,7 @@
     input = read_files(args.input_files)
     try:
         for out_file in args.output_files:
-            out_file.write("Output file name: " + out_file.name + '\n\n')
+            out_file.write("Output file name: " + out_file.name + "\n\n")
             out_file.write(input)
     except IOError as e:
         cleanup(args)
@@ -55,7 +55,7 @@
     '''
     str = ''
     for in_file in file_list:
-        str += "Input file name: " + in_file.name + '\n'
+        str += "Input file name: " + in_file.name + "\n\n"
         str += in_file.read()
     return str