Skip to content

Commit 30ac4b6

Browse files
authored
Merge pull request #159 from tommynsong/main
remove trailing query
2 parents 16af89e + 4c4bfcc commit 30ac4b6

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ __pycache__/
1414
*.py[cod]
1515
*$py.class
1616
dist/*
17+
build/*
1718

1819
# OSX
1920

prismacloud/api/cwpp/_cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def cloud_discovery_scan_stop(self):
2020
return self.execute_compute('POST', 'api/v1/cloud/discovery/stop')
2121

2222
def cloud_discovery_vms(self, query_params=None):
23-
return self.execute_compute('GET', 'api/v1/cloud/discovery/vms?', query_params=query_params, paginated=True)
23+
return self.execute_compute('GET', 'api/v1/cloud/discovery/vms', query_params=query_params, paginated=True)

prismacloud/api/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
""" version file """
22

3-
version = '5.2.7'
3+
version = '5.2.8'

0 commit comments

Comments
 (0)