mailr22774 - /trunk/lib/errors.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on April 15, 2014 - 16:58:
Author: bugman
Date: Tue Apr 15 16:58:07 2014
New Revision: 22774

URL: http://svn.gna.org/viewcvs/relax?rev=22774&view=rev
Log:
Decreased the amount of newlines around the printout from the '--error-state' 
command line option.


Modified:
    trunk/lib/errors.py

Modified: trunk/lib/errors.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/lib/errors.py?rev=22774&r1=22773&r2=22774&view=diff
==============================================================================
--- trunk/lib/errors.py (original)
+++ trunk/lib/errors.py Tue Apr 15 16:58:07 2014
@@ -87,10 +87,10 @@
 
     # Open the file for writing.
     if bz2:
-        sys.stderr.write("\n\nStoring the relax state in the file 
'%s.bz2'.\n\n\n" % file_name)
+        sys.stderr.write("\nStoring the relax state in the file 
'%s.bz2'.\n\n" % file_name)
         file = BZ2File(file_name+'.bz2', 'w')
     else:
-        sys.stderr.write("\n\nStoring the relax state in the file 
'%s'.\n\n\n" % file_name)
+        sys.stderr.write("\nStoring the relax state in the file '%s'.\n\n" % 
file_name)
         file = open(file_name, 'w')
 
     # Pickle the data class and write it to file




Related Messages


Powered by MHonArc, Updated Tue Apr 15 18:40:02 2014