mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
fix PEP8 "E225 missing whitespace around operator"
This commit is contained in:
parent
c54cabe741
commit
7e17fafc14
5 changed files with 6 additions and 6 deletions
|
|
@ -51,7 +51,7 @@ def getrepofrompage(url):
|
|||
return (repotype, repo)
|
||||
|
||||
# Works for Google Code and BitBucket...
|
||||
index=page.find('git clone')
|
||||
index = page.find('git clone')
|
||||
if index != -1:
|
||||
repotype = 'git'
|
||||
repo = page[index + 10:]
|
||||
|
|
@ -63,7 +63,7 @@ def getrepofrompage(url):
|
|||
return (repotype, repo)
|
||||
|
||||
# Google Code only...
|
||||
index=page.find('svn checkout')
|
||||
index = page.find('svn checkout')
|
||||
if index != -1:
|
||||
repotype = 'git-svn'
|
||||
repo = page[index + 13:]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue