From d10fe47dc44c77ecee0a2f77a8ab0b963dfbd1d4 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 11 Jun 2017 22:56:21 -0700 Subject: [PATCH] Add parentheses to default tag chars. --- etiquette/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etiquette/constants.py b/etiquette/constants.py index b816379..148242a 100644 --- a/etiquette/constants.py +++ b/etiquette/constants.py @@ -168,7 +168,7 @@ DEFAULT_CONFIGURATION = { 'min_tag_name_length': 1, 'max_tag_name_length': 32, - 'valid_tag_chars': string.ascii_lowercase + string.digits + '_', + 'valid_tag_chars': string.ascii_lowercase + string.digits + '_()', 'min_username_length': 2, 'max_username_length': 24,