diff mercurial/hg.py @ 7044:e51c0f41f271

Escape '%' when writing to hgrc (issue1199) Fixes clone with paths containing '%'. Patch provided by mjc.
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sat, 20 Sep 2008 15:00:58 +0200
parents 0750f11152fe
children f82938c87b92 25961e53a07f
line wrap: on
line diff
--- a/mercurial/hg.py	Thu Sep 18 13:55:58 2008 +0200
+++ b/mercurial/hg.py	Sat Sep 20 15:00:58 2008 +0200
@@ -239,7 +239,8 @@
         if dest_repo.local():
             fp = dest_repo.opener("hgrc", "w", text=True)
             fp.write("[paths]\n")
-            fp.write("default = %s\n" % abspath)
+            # percent needs to be escaped for ConfigParser
+            fp.write("default = %s\n" % abspath.replace('%', '%%'))
             fp.close()
 
             if update: