Skip to content

Commit

Permalink
#402: test for empty CR_DATA
Browse files Browse the repository at this point in the history
  • Loading branch information
lrochette committed Oct 11, 2021
1 parent ba7283d commit 4be688e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion incubating/service-now/lib/snow.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def createChangeRequest(user, password, baseUrl, data):

if DEBUG:
print("Entering createChangeRequest:")
print(f"Data: {data}")
print(f"Data: {data}") if bool(data)

if (bool(data)):
crBody=json.loads(data)
Expand Down

0 comments on commit 4be688e

Please sign in to comment.