proton-ge-updater: replace spaces with tabs

This commit is contained in:
Izalia Mae 2021-07-29 04:05:50 -04:00
parent 17b603808f
commit 9db9afe74f
2 changed files with 4 additions and 4 deletions

0
pa-socket-bridge.py Normal file → Executable file
View file

View file

@ -48,9 +48,9 @@ with urlopen(Request(url, headers={'Accept': 'application/vnd.github.v3+json'}))
builds = data['assets']
for build in builds:
if not build['browser_download_url'].endswith('.tar.gz')
continue
for build in builds:
if not build['browser_download_url'].endswith('.tar.gz')
continue
release = {
'name': build['name'],
@ -59,7 +59,7 @@ with urlopen(Request(url, headers={'Accept': 'application/vnd.github.v3+json'}))
'url': build['browser_download_url']
}
break
break
if not release:
print('Failed to get build info:', e)