##// END OF EJS Templates
bundlerepo: use suffix variable...
Gregory Szorc -
r35039:80e9b85d default
parent child Browse files
Show More
@@ -321,7 +321,7 b' class bundlerepository(localrepo.localre'
321 """Write a temporary file to disk
321 """Write a temporary file to disk
322 """
322 """
323 fdtemp, temp = self.vfs.mkstemp(prefix="hg-bundle-",
323 fdtemp, temp = self.vfs.mkstemp(prefix="hg-bundle-",
324 suffix=".hg10un")
324 suffix=suffix)
325 self.tempfile = temp
325 self.tempfile = temp
326
326
327 with os.fdopen(fdtemp, pycompat.sysstr('wb')) as fptemp:
327 with os.fdopen(fdtemp, pycompat.sysstr('wb')) as fptemp:
General Comments 0
You need to be logged in to leave comments. Login now