summaryrefslogtreecommitdiff
path: root/grc/core/utils/extract_docs.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/core/utils/extract_docs.py')
-rw-r--r--grc/core/utils/extract_docs.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/grc/core/utils/extract_docs.py b/grc/core/utils/extract_docs.py
index 8389c29e84..09bcaeb7c7 100644
--- a/grc/core/utils/extract_docs.py
+++ b/grc/core/utils/extract_docs.py
@@ -14,9 +14,7 @@ import threading
import json
import random
import itertools
-
-import six
-from six.moves import queue, filter, range
+import queue
###############################################################################
@@ -276,7 +274,7 @@ if __name__ == '__worker__':
elif __name__ == '__main__':
def callback(key, docs):
print(key)
- for match, doc in six.iteritems(docs):
+ for match, doc in docs.items():
print('-->', match)
print(str(doc).strip())
print()