Fix AttributeError
This commit is contained in:
parent
c9dd44f498
commit
a2a53cddf6
1 changed files with 4 additions and 5 deletions
|
@ -49,9 +49,8 @@ class ImageCacheThread(threading.Thread):
|
|||
def run(self):
|
||||
try:
|
||||
response = requests.head(
|
||||
url=(
|
||||
"http://%s:%s/image/image://%s"
|
||||
% (self.xbmc_host, self.xbmc_port, self.urlToProcess)),
|
||||
url=("http://%s:%s/image/image://%s"
|
||||
% (self.xbmc_host, self.xbmc_port, self.url_to_process)),
|
||||
auth=(self.xbmc_username, self.xbmc_password),
|
||||
timeout=(5, 5))
|
||||
# We don't need the result
|
||||
|
|
Loading…
Reference in a new issue