aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models/rules.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-12 15:58:07 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-12 15:58:07 +0300
commit517e3c2bf8d34d8d71d3974634963a0e6e76c305 (patch)
treea14eb2d6121e9270fba3e8465fd6fcf1afc8048d /servo/models/rules.py
parent8c4fbdd167aa22eff70abd85da20a2187f207812 (diff)
downloadServo-517e3c2bf8d34d8d71d3974634963a0e6e76c305.tar.gz
Servo-517e3c2bf8d34d8d71d3974634963a0e6e76c305.tar.bz2
Servo-517e3c2bf8d34d8d71d3974634963a0e6e76c305.zip
Fix manage check errors
Diffstat (limited to 'servo/models/rules.py')
-rw-r--r--servo/models/rules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servo/models/rules.py b/servo/models/rules.py
index 14fc3bb..f2ffa6a 100644
--- a/servo/models/rules.py
+++ b/servo/models/rules.py
@@ -101,7 +101,7 @@ class Condition(ServoModel):
('%d > %d', _('Greater than')),
)
operator = models.CharField(
- max_length=4,
+ max_length=8,
default='^%s$',
choices=OPERATOR_CHOICES
)