From 3a9f13594c62c621fb5b209f4eff46abd8dc1b8f Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Sat, 7 Jan 2023 23:08:33 +0100 Subject: [PATCH] Fix probabilmente definitivo. --- loaih/build.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/loaih/build.py b/loaih/build.py index e06a2b4..8bf07fb 100644 --- a/loaih/build.py +++ b/loaih/build.py @@ -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: