1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
This commit is contained in:
Ryan Breaker
2017-10-24 20:43:02 -05:00
parent 3d023126ba
commit e57b8aa26f

View File

@ -96,7 +96,7 @@ def parse_alphanumeric_range(string):
continue
except ValueError:
begin, end = dash_range, dash_range
nums = list(range(ord(begin), ord(end)+1))
nums = list(range(ord(begin), ord(end) + 1))
for n in nums:
values.append(chr(n))
return values