diff mercurial/commands.py @ 1331:cfae1ed2d61f

Write hgrc file in text mode, even on Windows.
author Bryan O'Sullivan <bos@serpentine.com>
date Fri, 23 Sep 2005 10:31:00 -0700
parents 57220daf40e9
children d4b25df77a9e
line wrap: on
line diff
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -624,7 +624,7 @@ def clone(ui, source, dest=None, **opts)
         abspath = os.path.abspath(source)
         if not opts['pull']:
             copy = True
-        
+
     if copy:
         try:
             # we use a lock here because if we race with commit, we
@@ -652,7 +652,7 @@ def clone(ui, source, dest=None, **opts)
         repo = hg.repository(ui, dest, create=1)
         repo.pull(other)
 
-    f = repo.opener("hgrc", "w")
+    f = repo.opener("hgrc", "w", text=True)
     f.write("[paths]\n")
     f.write("default = %s\n" % abspath)