This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/8.0.x by this push:
new 30d930e Doc: Repair various format errors. Tweak traffic-server.py
support for Python 3.
30d930e is described below
commit 30d930e2c8a159840171decb41822e93abea0a05
Author: Alan M. Carroll <[email protected]>
AuthorDate: Fri Nov 2 13:58:37 2018 -0500
Doc: Repair various format errors.
Tweak traffic-server.py support for Python 3.
(cherry picked from commit 7ab2e7278bd641706395ddefc4ef7f4afba14fe2)
These conflicts were all ignored, since they don't apply to this
tree.
Conflicts:
doc/admin-guide/files/records.config.en.rst
doc/admin-guide/plugins/ssl_session_reuse.en.rst
doc/developer-guide/plugins/hooks-and-transactions/ssl-hooks.en.rst
---
doc/ext/traffic-server.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/ext/traffic-server.py b/doc/ext/traffic-server.py
index 062af33..ce1e1e4 100644
--- a/doc/ext/traffic-server.py
+++ b/doc/ext/traffic-server.py
@@ -327,11 +327,11 @@ class TrafficServerDomain(Domain):
def clear_doc(self, docname):
cv_list = self.data['cv']
- for var, doc in cv_list.items():
+ for var, doc in list(cv_list.items()):
if doc == docname:
del cv_list[var]
stat_list = self.data['stat']
- for var, doc in stat_list.items():
+ for var, doc in list(stat_list.items()):
if doc == docname:
del stat_list[var]