mailr20495 - /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 July 31, 2013 - 16:57:
Author: bugman
Date: Wed Jul 31 16:57:23 2013
New Revision: 20495

URL: http://svn.gna.org/viewcvs/relax?rev=20495&view=rev
Log:
Fix for the relax version file for the relax user manual construction.

This was causing 'scons user_manual_pdf' and related targets to fail when a 
local git repository is
used (via git-svn).

Modified:
    trunk/scons/manuals.py

Modified: trunk/scons/manuals.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/scons/manuals.py?rev=20495&r1=20494&r2=20495&view=diff
==============================================================================
--- trunk/scons/manuals.py (original)
+++ trunk/scons/manuals.py Wed Jul 31 16:57:23 2013
@@ -499,7 +499,7 @@
     # Add the repository revision if not a normal release.
     text = version.version
     if text == 'repository checkout':
-        text += ' r' + version.revision()
+        text += ' r%s' % version.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 Wed Jul 31 17:40:01 2013