Removed redundant operators

This commit is contained in:
Raphael Michel
2015-07-26 17:18:48 +02:00
parent 36430f3b9a
commit c8a47f6d4b

View File

@@ -309,7 +309,7 @@ class Organizer(Versionable):
max_length=50, db_index=True,
help_text=_(
"Should be short, only contain lowercase letters and numbers, and must be unique among your events. "
+ "This is being used in addresses and bank transfer references."),
"This is being used in addresses and bank transfer references."),
validators=[
RegexValidator(
regex="^[a-zA-Z0-9.-]+$",
@@ -406,7 +406,7 @@ class Event(Versionable):
max_length=50, db_index=True,
help_text=_(
"Should be short, only contain lowercase letters and numbers, and must be unique among your events. "
+ "This is being used in addresses and bank transfer references."),
"This is being used in addresses and bank transfer references."),
validators=[
RegexValidator(
regex="^[a-zA-Z0-9.-]+$",