Skip to content

Commit 64f78de

Browse files
author
Szilárd Pfeiffer
committedNov 10, 2020
pep8: local variable is assigned to but never used (F841)
1 parent 6087f67 commit 64f78de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/clamav_stack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main():
5757
syslog.syslog('No viruses were found in the content.\n')
5858
os.lseek(tmp_file, 0, os.SEEK_SET)
5959
copy_file(tmp_file, 1)
60-
except OSError as e:
60+
except OSError:
6161
syslog.syslog('No viruses were found in the content.\n')
6262

6363
os.close(1)

0 commit comments

Comments
 (0)
Please sign in to comment.