Missing etag extension

merge-requests/30/head
Bob Mottram 2021-11-25 22:29:01 +00:00
parent 10f24bcc2d
commit 48154066bf
1 changed files with 1 additions and 1 deletions

View File

@ -873,7 +873,7 @@ class PubServer(BaseHTTPRequestHandler):
# load the etag from file
currEtag = ''
try:
with open(mediaFilename, 'r') as etagFile:
with open(mediaFilename + '.etag', 'r') as etagFile:
currEtag = etagFile.read()
except OSError:
print('EX: _etag_exists unable to read ' +