mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
Also finish at quotes when using import -u
This commit is contained in:
parent
4193caa0d4
commit
a35ff3e154
@ -44,6 +44,7 @@ def getrepofrompage(url):
|
||||
if index == -1:
|
||||
return (None, "Error while getting repo address")
|
||||
repo = repo[:index]
|
||||
repo = repo.split('"')[0]
|
||||
return (repotype, repo)
|
||||
|
||||
# Works for Google Code and BitBucket...
|
||||
@ -55,6 +56,7 @@ def getrepofrompage(url):
|
||||
if index == -1:
|
||||
return (None, "Error while getting repo address")
|
||||
repo = repo[:index]
|
||||
repo = repo.split('"')[0]
|
||||
return (repotype, repo)
|
||||
|
||||
# Google Code only...
|
||||
@ -75,6 +77,7 @@ def getrepofrompage(url):
|
||||
if index == -1:
|
||||
return (None, "Error while getting repo address - no space? '" + repo + "'")
|
||||
repo = repo[:index]
|
||||
repo = repo.split('"')[0]
|
||||
return (repotype, repo)
|
||||
|
||||
return (None, "No information found." + page)
|
||||
|
Loading…
Reference in New Issue
Block a user