Fix probabilmente definitivo.

This commit is contained in:
Emiliano Vavassori 2023-01-07 23:08:33 +01:00
parent 1f83db6105
commit 3a9f13594c
1 changed files with 1 additions and 2 deletions

View File

@ -10,7 +10,6 @@ import re
import shlex
import tempfile
import urllib.request
import hashlib
from lxml import etree
import loaih
@ -167,7 +166,7 @@ class Build(loaih.RemoteBuild):
# Remote storage. I have to query a remote site to know if it
# was already built.
name = self.appimagefilename[arch]
url = self.storage_path.rstrip('/') + self.full_path + '/' + name
url = self.storage_path.rstrip('/') + self.full_path + '/'
matching = []
try:
with urllib.request.urlopen(url) as response: