We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 537ca2d commit 5962788Copy full SHA for 5962788
veracode_api_py/applications.py
@@ -67,6 +67,7 @@ def _create_or_update(self,method,app_name: str, business_criticality, descripti
67
68
if business_criticality not in Constants().BUSINESS_CRITICALITY:
69
raise ValueError("{} is not in the list of valid business criticalities ({})".format(business_criticality,Constants().BUSINESS_CRITICALITY))
70
+ business_criticality = business_criticality.replace(" ", "_")
71
72
app_def = {'name':app_name, 'business_criticality':business_criticality}
73
0 commit comments