parent
3d13628bb8
commit
59b6049f9f
2 changed files with 3 additions and 0 deletions
|
@ -35,6 +35,7 @@
|
|||
### Miscellaneous and Bug Fixes
|
||||
* wmllint now validates `rank=` values in `[campaign]` (issue #7224)
|
||||
* Fixed a crash when checking if abilities are active during game initialisation after loading a saved game. (issues #5643, #7238)
|
||||
* wmlxgettext now outputs Unix-like paths in .pot file comments even on Windows (issue #7380)
|
||||
|
||||
## Version 1.17.11
|
||||
### Campaigns
|
||||
|
|
|
@ -17,6 +17,8 @@ def autoscan(pathdir):
|
|||
value = re.sub(r'^\/', '', value)
|
||||
else:
|
||||
value = re.sub(r'^(?:[A-Za-z]\:)?\\', '', value)
|
||||
# use Unix path separators even on Windows
|
||||
value = value.replace("\\", "/")
|
||||
filelist.append(value)
|
||||
# end if m
|
||||
# end for name
|
||||
|
|
Loading…
Add table
Reference in a new issue