Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request #405 from HewlettPackard/new_version/4.8.0
Browse files Browse the repository at this point in the history
Documentation update for new release - 4.8.0
  • Loading branch information
sijeesh authored Mar 21, 2019
2 parents 79532ef + 21c2da3 commit 1d5a0e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 4.8.0 (Unreleased)
# 4.8.0
#### Notes
Added the capability to handle OneView Appliance SNMP Settings
Extends support of the SDK to OneView Rest API version 800 (OneView v4.1).
Expand Down
2 changes: 1 addition & 1 deletion examples/enclosures.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
try:
csr = oneview_client.enclosures.get_csr(enclosure_uri, bay_number=bay_number)
with open('enclosure.csr', 'w') as csr_file:
csr_file.write(csr["base64Data"])
csr_file.write(csr["base64Data"])
print("Saved CSR(generated by previous POST) to 'enclosure.csr' file")
except HPOneViewException as e:
print(e.msg)
Expand Down
4 changes: 2 additions & 2 deletions examples/interconnects.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
updated = oneview_client.interconnects.update_configuration(interconnect_id)
pprint(updated)
except HPOneViewException as e:
print(e.msg)
print(e.msg)

# Gets the interconnect configuration.
print("\nGet the interconnect pluggable module information")
Expand All @@ -208,4 +208,4 @@
plug_info = oneview_client.interconnects.get_pluggable_module_information(interconnect_id)
pprint(plug_info)
except HPOneViewException as e:
print(e.msg)
print(e.msg)

0 comments on commit 1d5a0e8

Please sign in to comment.