##// END OF EJS Templates
help: it's not necessary to escape quotes
Benoit Boissinot -
r10708:61c52fed default
parent child Browse files
Show More
@@ -25,7 +25,7 b' def moduledoc(file):'
25 break
25 break
26
26
27 start = line[:3]
27 start = line[:3]
28 if start == '\"\"\"' or start == "\'\'\'":
28 if start == '"""' or start == "'''":
29 line = line[3:]
29 line = line[3:]
30 while line:
30 while line:
31 if line.rstrip().endswith(start):
31 if line.rstrip().endswith(start):
General Comments 0
You need to be logged in to leave comments. Login now