contrib/byteify-strings.py
changeset 42700 f9b64ff9d26b
parent 42687 26a31c88e1a5
child 42701 11498aa91c03
--- a/contrib/byteify-strings.py	Thu Jul 18 17:10:38 2019 +0800
+++ b/contrib/byteify-strings.py	Tue Aug 06 14:49:30 2019 +0200
@@ -152,14 +152,14 @@
             if not insideignoreblock:
                 ignorenextline = (
                     tokens[i - 1].type == token.COMMENT
-                    and tokens[i - 1].string == "#no-py3-transform"
+                    and tokens[i - 1].string == "# no-py3-transform"
                 )
             continue
 
         if t.type == token.COMMENT:
-            if t.string == "#py3-transform: off":
+            if t.string == "# py3-transform: off":
                 insideignoreblock = True
-            if t.string == "#py3-transform: on":
+            if t.string == "# py3-transform: on":
                 insideignoreblock = False
 
         if ignorenextline or insideignoreblock: