You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2009/03/01 07:49:54 UTC

svn commit: r748967 - /gump/trunk/python/gump/core/update/cvs.py

Author: bodewig
Date: Sun Mar  1 06:49:54 2009
New Revision: 748967

URL: http://svn.apache.org/viewvc?rev=748967&view=rev
Log:
a TAG file contains a T-prefix

Modified:
    gump/trunk/python/gump/core/update/cvs.py

Modified: gump/trunk/python/gump/core/update/cvs.py
URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/cvs.py?rev=748967&r1=748966&r2=748967&view=diff
==============================================================================
--- gump/trunk/python/gump/core/update/cvs.py (original)
+++ gump/trunk/python/gump/core/update/cvs.py Sun Mar  1 06:49:54 2009
@@ -141,11 +141,11 @@
             return rep
 
         if module.getScm().hasTag() or module.hasTag():
-            expected_tag = None
+            expected_tag = 'T'
             if module.getScm().hasTag():
-                expected_tag = module.getScm().getTag()
+                expected_tag += module.getScm().getTag()
             elif module.hasTag():
-                expected_tag = module.getTag()
+                expected_tag += module.getTag()
             tag = error_unless_file_content_matches(cvsdir, 'Tag',
                                                     expected_tag, 'Tag')
             if tag: