Skip to content

Commit

Permalink
Misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jjrush authored and mmguero committed Nov 4, 2024
1 parent 03275fe commit d3c49f0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions shared/bin/extracted_files_http_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,7 @@ def do_GET(self):
fsource = fmatch.groupdict().get('source', '')
if fsource == '<error>':
fsource = ''
elif xorRegex.search(fsource):
xorMatch = xorRegex.search(fsource)
elif xorMatch := xorRegex.search(fsource):
fsource = xorMatch.groupdict().get('source', '')
fids.append(xorMatch.groupdict().get('fuid', ''))

Expand Down

0 comments on commit d3c49f0

Please sign in to comment.