Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

xrange() was removed from Python on 1/1/2020 #368

Merged
merged 1 commit into from
Jun 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/common/completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def complete_info(self, args):
parts = name.split("/")

# iterate down the split parts so we can handle the nested payload structure
for x in xrange(len(parts)):
for x in range(len(parts)):

# if the first part of the iterated payload matches the language, append it
if parts[x] == lang:
Expand Down