X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=module-tools.py;h=787d757a559e5dafdf01faf7d21ae6c6b718386a;hb=1bb4a274139be67809199455aedbfb2227e08c78;hp=5b19b8d980fd0cb080022ae64077e20a3dbecf25;hpb=77ae19b10a522bada13e21f8b6b4fbbafd3169ef;p=build.git diff --git a/module-tools.py b/module-tools.py index 5b19b8d9..787d757a 100755 --- a/module-tools.py +++ b/module-tools.py @@ -986,7 +986,7 @@ will be based on latest tag %s and *not* on the current trunk"""%(self.name,bran # create commit log file tmp="/tmp/branching-%d"%os.getpid() f=open(tmp,"w") - f.write("Branch %s for module %s created (as new trunk) from tag %s\n"%(new_trunk_name,self.name,latest_tag_name)) + f.write("Branch %s for module %s created (as new trunk) from tag %s\n"%(branch_name,self.name,latest_tag_name)) f.close() # review the renumbering changes in trunk @@ -1003,10 +1003,10 @@ will be based on latest tag %s and *not* on the current trunk"""%(self.name,bran command="svn copy --file %s %s %s"%(tmp,tag_url,new_tag_url) self.run_prompt("Create initial tag in trunk",command) os.unlink(tmp) - # print message about SVNBRANCH + # print message about BRANCH print """You might now wish to review your tags files Please make sure you mention as appropriate -%s-SVNBRANCH := %s""" %(self.name,branch_name) +%s-BRANCH := %s""" %(self.name,branch_name) ############################## class Package: