Browse Source

Update typo

Thomas Adamcik 15 years ago
parent
commit
7543cfb184
1 changed files with 2 additions and 1 deletions
  1. 2 1
      manager.py

+ 2 - 1
manager.py

@@ -22,12 +22,13 @@ NET_TERMS = {
     'contains_or_equals': '>>=',
 }
 
+# FIXME rethink caps with respect to IPV6, all should be insensitive...
 NET_MAPPING = {
     'iexact': 'exact',
     'icontains': 'contains',
     'istartswith': 'startswith',
     'iendswith': 'endswith',
-    'iregex': 'regexp',
+    'iregex': 'regex',
 }
 
 class NetQuery(sql.Query):