mailr23779 - /trunk/scons/manuals.py


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

Header


Content

Posted by edward on June 10, 2014 - 10:07:
Author: bugman
Date: Tue Jun 10 10:07:22 2014
New Revision: 23779

URL: http://svn.gna.org/viewcvs/relax?rev=23779&view=rev
Log:
Fix for the scons target for compiling the relax manual when using a 
repository checkout copy.

The method for compiling the relax manual was calling the version.revision() 
function, however this
has been replaced a while ago by the version.repo_revision variable.


Modified:
    trunk/scons/manuals.py

Modified: trunk/scons/manuals.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/scons/manuals.py?rev=23779&r1=23778&r2=23779&view=diff
==============================================================================
--- trunk/scons/manuals.py      (original)
+++ trunk/scons/manuals.py      Tue Jun 10 10:07:22 2014
@@ -503,7 +503,7 @@
     # Add the repository revision if not a normal release.
     text = version.version
     if text == 'repository checkout':
-        text += ' r%s' % version.revision()
+        text += ' r%s' % version.repo_revision
 
     # Place the program version number into a LaTeX file.
     file = open(env['LATEX_DIR'] + sep + 'relax_version.tex', 'w')




Related Messages


Powered by MHonArc, Updated Tue Jun 10 10:20:02 2014