hgext/convert/common.py
changeset 39425 2dd9519b8c8a
parent 38312 79dd61a4554f
child 39826 c31ce080eb75
--- a/hgext/convert/common.py	Tue Sep 04 12:16:28 2018 -0400
+++ b/hgext/convert/common.py	Tue Sep 04 17:15:17 2018 +0300
@@ -459,7 +459,7 @@
         # POSIX requires at least 4096 bytes for ARG_MAX
         argmax = 4096
         try:
-            argmax = os.sysconf("SC_ARG_MAX")
+            argmax = os.sysconf(r"SC_ARG_MAX")
         except (AttributeError, ValueError):
             pass