We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3500e5 commit d57845cCopy full SHA for d57845c
msg2po/poify.py
@@ -73,10 +73,10 @@ def poify(poify_dir: str, encoding: str = CONFIG.encoding):
73
if os.path.sep == "\\":
74
full_name = full_name.replace("\\", "/")
75
76
- full_name = re.sub("^\./", "", full_name) # remove trailing './'
+ full_name = re.sub(r"^\./", "", full_name) # remove trailing './'
77
78
# skip female cuts
79
- pretty_dir_name = re.sub("^\./", "", dir_name)
+ pretty_dir_name = re.sub(r"^\./", "", dir_name)
80
if extract_format == "sfall" and pretty_dir_name == "cuts_female":
81
print("{} is in cuts_female. Skipping!".format(full_name))
82
continue
0 commit comments