Skip to content

Commit

Permalink
New release v0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
histrio committed Jul 3, 2019
1 parent 4c54125 commit 8f2bfaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kcare-qualys"
version = "0.1.10"
version = "0.1.11"
description = "The script marks vulnerabilities detected by Qualys, but patched by KernelCare as exceptions"
authors = ["Rinat Sabitov <rsabitov@cloudlinux.com>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/kcare_qualys.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def patch(args, qgc, keys):
quoting=csv.QUOTE_NONNUMERIC)

orig_fd, orig = tempfile.mkstemp(prefix='kcare-qualys-', suffix='.csv')
with open(orig_fd, 'w', newline='\r\n') as orig_file:
with open(orig_fd, 'w', newline='') as orig_file:
reader = csv.reader(files_input, dialect='qualys')
writer = csv.writer(orig_file, dialect='qualys')

Expand Down

0 comments on commit 8f2bfaf

Please sign in to comment.