1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-10 23:00:12 +02:00

use .as_posix()

This commit is contained in:
linsui 2021-06-09 13:28:37 +08:00 committed by Hans-Christoph Steiner
parent 86b053291d
commit bf9cbc87a9
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ import sys
import yaml
from argparse import ArgumentParser
import logging
from pathlib import Path, PurePosixPath
from pathlib import Path
try:
from yaml import CSafeLoader as SafeLoader
@ -192,7 +192,7 @@ def main():
build.subdir = options.subdir
build.gradle = ['yes']
elif subdir:
build.subdir = str(PurePosixPath(subdir))
build.subdir = subdir.as_posix()
build.gradle = ['yes']
if options.license:

View File

@ -19,7 +19,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import git
from pathlib import Path, PurePosixPath
from pathlib import Path
import platform
import re
import logging
@ -734,7 +734,7 @@ def parse_metadata(metadatapath):
"""
metadatapath = Path(metadatapath)
app = App()
app.metadatapath = str(PurePosixPath(metadatapath))
app.metadatapath = metadatapath.as_posix()
name = metadatapath.stem
if name != '.fdroid':
app.id = name