Ryan Breaker 7 years ago
parent
commit
e57b8aa26f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/utilities/forms.py

+ 1 - 1
netbox/utilities/forms.py

@@ -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