Skip to content

Commit

Permalink
xrange() was removed from Python on 1/1/2020
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jun 8, 2020
1 parent 887cbe9 commit 4aa979e
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 4aa979e

Please sign in to comment.