patch_pyxml.py

changeset 564
b3d966393ba9
parent 433
988006cb898f
diff -r e35d2cda9a74 -r b3d966393ba9 patch_pyxml.py
--- a/patch_pyxml.py	Sat Sep 04 19:51:19 2010 +0200
+++ b/patch_pyxml.py	Sat Sep 04 19:51:48 2010 +0200
@@ -76,12 +76,12 @@
     
     for line in lines:
         if patchPositionFound and \
-            (line.startswith(\
+            (line.startswith(
                 "                # patched by eric5 install script.") or \
-             line.startswith(\
+             line.startswith(
                 "                self.datasize = len(self.data)")):
                 return True
-        if line.startswith(\
+        if line.startswith(
               "                self.data = self.charset_converter(self.data)"):
             patchPositionFound = True
             continue
@@ -114,16 +114,16 @@
     s = open(sn, "w", encoding = "utf-8")
     for line in lines:
         if patchPositionFound:
-            if not line.startswith(\
+            if not line.startswith(
                     "                # patched by eric5 install script.") and \
-               not line.startswith(\
+               not line.startswith(
                     "                self.datasize = len(self.data)"):
                 s.write("                # patched by eric5 install script.\n")
                 s.write("                self.datasize = len(self.data)\n")
                 patched = True
             patchPositionFound = False
         s.write(line)
-        if line.startswith(\
+        if line.startswith(
               "                self.data = self.charset_converter(self.data)"):
             patchPositionFound = True
             continue
@@ -188,4 +188,4 @@
     patchPyXML()
     
 if __name__ == "__main__":
-    main()
+    main()
\ No newline at end of file

eric ide

mercurial