##// END OF EJS Templates
tagmerge: use 'wvfs' instead of 'wfile'...
Pierre-Yves David -
r31415:5d92107d default
parent child Browse files
Show More
@@ -169,7 +169,7 b' def writemergedtags(repo, mergedtags):'
169 # finally we can join the sorted groups to get the final contents of the
169 # finally we can join the sorted groups to get the final contents of the
170 # merged .hgtags file, and then write it to disk
170 # merged .hgtags file, and then write it to disk
171 mergedtagstring = '\n'.join([tags for rank, tags in finaltags if tags])
171 mergedtagstring = '\n'.join([tags for rank, tags in finaltags if tags])
172 fp = repo.wfile('.hgtags', 'wb')
172 fp = repo.wvfs('.hgtags', 'wb')
173 fp.write(mergedtagstring + '\n')
173 fp.write(mergedtagstring + '\n')
174 fp.close()
174 fp.close()
175
175
General Comments 0
You need to be logged in to leave comments. Login now