run-tests: open hgrc file only for writing stable
authorSimon Heimberg <simohe@besonet.ch>
Wed, 05 Jun 2013 22:42:43 +0200
branchstable
changeset 1265 ae952fb9707f
parent 1263 f31eefe0ab4c
child 1266 f412189fe8f8
run-tests: open hgrc file only for writing The file is not read here. Opening with "w+" is unnecessary. [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Thu Jun 06 14:40:26 2013 -0500
+++ b/tests/run-tests.py	Wed Jun 05 22:42:43 2013 +0200
@@ -333,7 +333,7 @@
 
 def createhgrc(path, options):
     # create a fresh hgrc
-    hgrc = open(path, 'w+')
+    hgrc = open(path, 'w')
     hgrc.write('[ui]\n')
     hgrc.write('slash = True\n')
     hgrc.write('interactive = False\n')