all: Fix strings with backslash by using raw string literals.
This commit is contained in:
parent
cda292935d
commit
8f8bd98164
|
@ -233,7 +233,7 @@ latex_elements = {
|
|||
# Additional stuff for the LaTeX preamble.
|
||||
#'preamble': '',
|
||||
# Include 3 levels of headers in PDF ToC
|
||||
'preamble': '\setcounter{tocdepth}{2}',
|
||||
'preamble': r'\setcounter{tocdepth}{2}',
|
||||
}
|
||||
|
||||
# Grouping the document tree into LaTeX files. List of tuples
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
r"""
|
||||
Flash the WiPy (format, update service pack and program).
|
||||
|
||||
Example:
|
||||
|
|
|
@ -16,7 +16,7 @@ def parse_usb_ids(filename):
|
|||
rv = dict()
|
||||
for line in open(filename).readlines():
|
||||
line = line.rstrip("\r\n")
|
||||
match = re.match("^#define\s+(\w+)\s+\(0x([0-9A-Fa-f]+)\)$", line)
|
||||
match = re.match(r"^#define\s+(\w+)\s+\(0x([0-9A-Fa-f]+)\)$", line)
|
||||
if match and match.group(1).startswith(config_prefix):
|
||||
key = match.group(1).replace(config_prefix, "USB_")
|
||||
val = match.group(2)
|
||||
|
|
|
@ -271,7 +271,7 @@ def get_drives():
|
|||
]
|
||||
)
|
||||
for line in to_str(r).split("\n"):
|
||||
words = re.split("\s+", line)
|
||||
words = re.split(r"\s+", line)
|
||||
if len(words) >= 3 and words[1] == "2" and words[2] == "FAT":
|
||||
drives.append(words[0])
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue