Skip to content

Commit f6df40c

Browse files
author
Tim Jarrett
committed
Fix for #119 problem with create_deleted_scans_report
1 parent 38a5d54 commit f6df40c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = 'veracode_api_py'
3-
version = '0.9.64'
3+
version = '0.9.65'
44
authors = [ {name = "Tim Jarrett", email="[email protected]"} ]
55
description = 'Python helper library for working with the Veracode APIs. Handles retries, pagination, and other features of the modern Veracode REST APIs.'
66
readme = 'README.md'
@@ -22,4 +22,4 @@ dependencies = {file = ["requirements.txt"]}
2222
[project.urls]
2323
"Homepage" = "https://github.com/veracode/veracode-api-py"
2424
"Bug Tracker" = "https://github.com/veracode/veracode-api-py/issues"
25-
"Download" = "https://github.com/veracode/veracode-api-py/archive/v_0964.tar.gz"
25+
"Download" = "https://github.com/veracode/veracode-api-py/archive/v_0965.tar.gz"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
setup(
88
name = 'veracode_api_py',
99
packages = ['veracode_api_py'],
10-
version = '0.9.64',
10+
version = '0.9.65',
1111
license='MIT',
1212
description = 'Python helper library for working with the Veracode APIs. Handles retries, pagination, and other features of the modern Veracode REST APIs.',
1313
long_description = long_description,
1414
long_description_content_type="text/markdown",
1515
author = 'Tim Jarrett',
1616
author_email = '[email protected]',
1717
url = 'https://github.com/tjarrettveracode',
18-
download_url = 'https://github.com/veracode/veracode-api-py/archive/v_0964.tar.gz',
18+
download_url = 'https://github.com/veracode/veracode-api-py/archive/v_0965.tar.gz',
1919
keywords = ['veracode', 'veracode-api'],
2020
install_requires=[
2121
'veracode-api-signing'

veracode_api_py/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def create_scans_report(self, start_date, end_date=None, scan_type:list = [],
111111

112112
def create_deleted_scans_report(self, start_date, end_date=None, application_id=None,
113113
rawjson=False):
114-
return self.create_report(report_type='deleted_scans', deletion_start_date=start_date,
114+
return self.create_report(report_type='deletedscans', deletion_start_date=start_date,
115115
deletion_end_date=end_date, application_id=application_id,
116116
rawjson=rawjson)
117117

0 commit comments

Comments
 (0)