Skip to content

Commit

Permalink
Merge pull request Veil-Framework#368 from cclauss/patch-1
Browse files Browse the repository at this point in the history
xrange() was removed from Python on 1/1/2020
  • Loading branch information
ChrisTruncer authored Jun 8, 2020
2 parents 887cbe9 + 4aa979e commit e33da37
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 e33da37

Please sign in to comment.