mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
use .as_posix()
This commit is contained in:
parent
86b053291d
commit
bf9cbc87a9
2 changed files with 4 additions and 4 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue