1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Tue, 17 Nov 2020 20:40:27 +0100
Subject: Correct some rst syntax
Forwarded: https://github.com/HewlettPackard/python-ilorest-library/pull/162
---
docs/Client-Quick-Start.rest | 4 ++--
src/redfish/ris/utils.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/Client-Quick-Start.rest b/docs/Client-Quick-Start.rest
index d42a57a..bd94f49 100644
--- a/docs/Client-Quick-Start.rest
+++ b/docs/Client-Quick-Start.rest
@@ -71,10 +71,10 @@ For a full list of optional arguments see `here <Reference.html#redfish.rest.v1.
REST_OBJ = redfish.LegacyRestClient(base_url=iLO_host, username=login_account, password=login_password)
Creating a Local Object
-===========================
+=======================
Requirements
------------------------
+------------
* You must be running on a server with iLO and the latest iLO drivers from the SPP.
* You will need to download the iLOrest Chif DLL/SO for your corresponding operating system and place it in your working environment path.
diff --git a/src/redfish/ris/utils.py b/src/redfish/ris/utils.py
index 3a5b750..da90894 100644
--- a/src/redfish/ris/utils.py
+++ b/src/redfish/ris/utils.py
@@ -505,7 +505,7 @@ def json_traversal_delete_empty(data, old_key=None, _iter=None, remove_list=None
:param old_key: key from previous recursive call (higher in stack)
:type old_key: dictionary key
:param _iter: iterator tracker for list (tracks iteration across
- recursive calls)
+ recursive calls)
:type _iter: numerical iterator
:param remove_list: list of items to be removed
:type: list
|