summaryrefslogtreecommitdiffstats
path: root/askbot/__init__.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-09-06 11:37:33 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-09-06 11:37:33 -0400
commitcc3ebc871f8da4329aad5db65e960b052e8f8834 (patch)
tree450ce91dcc2de37b9837de6e4db94965f77d07dc /askbot/__init__.py
parentc46cbfb2e5bf1d28a5fbfbcf156e5d3509241316 (diff)
parent996507782f455c17afcf68667ad83c963a9179c7 (diff)
downloadaskbot-cc3ebc871f8da4329aad5db65e960b052e8f8834.tar.gz
askbot-cc3ebc871f8da4329aad5db65e960b052e8f8834.tar.bz2
askbot-cc3ebc871f8da4329aad5db65e960b052e8f8834.zip
merged with adolfos master branch
Diffstat (limited to 'askbot/__init__.py')
-rw-r--r--askbot/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index c79d19f9..97b5ee92 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -5,6 +5,7 @@ Functions in the askbot module perform various
basic actions on behalf of the forum application
"""
import os
+import platform
VERSION = (0, 7, 43)
@@ -30,11 +31,14 @@ REQUIREMENTS = {
'recaptcha_works': 'django-recaptcha-works',
'openid': 'python-openid',
'pystache': 'pystache==0.3.1',
- 'lamson': 'Lamson',
'pytz': 'pytz',
'tinymce': 'django-tinymce',
+ 'longerusername': 'longerusername',
}
+if platform.system() != 'Windows':
+ REQUIREMENTS['lamson'] = 'Lamson'
+
#necessary for interoperability of django and coffin
try:
from askbot import patches