mailr9733 - /branches/bmrb/version.py


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

Header


Content

Posted by edward on October 11, 2009 - 17:27:
Author: bugman
Date: Sun Oct 11 17:27:43 2009
New Revision: 9733

URL: http://svn.gna.org/viewcvs/relax?rev=9733&view=rev
Log:
Fixes for the version_full() function due to 'url = url()'!!


Modified:
    branches/bmrb/version.py

Modified: branches/bmrb/version.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/version.py?rev=9733&r1=9732&r2=9733&view=diff
==============================================================================
--- branches/bmrb/version.py (original)
+++ branches/bmrb/version.py Sun Oct 11 17:27:43 2009
@@ -101,14 +101,14 @@
     # Repository version.
     if ver == 'repository checkout':
         # Get the SVN revision and URL.
-        rev = revision()
-        url = url()
+        svn_rev = revision()
+        svn_url = url()
 
         # Change the version string.
-        if rev:
-            ver = version + " r" + rev
-        if url:
-            ver = ver + " " + url
+        if svn_rev:
+            ver = version + " r" + svn_rev
+        if svn_url:
+            ver = ver + " " + svn_url
 
     # Return the version.
     return ver




Related Messages


Powered by MHonArc, Updated Sun Oct 11 19:00:02 2009