私はこのtemplatetagを使用しています:
@register.filter
def php_striptags(text, allowed=""):
soup = BeautifulSoup(text)
# list all tags
allowed_tags = allowed.split()
for tag in soup.find_all(True):
if tag.name not in allowed_tags:
tag.unwrap()
return soup.encode_contents().decode('utf8')
開発マシンでは問題なく動作しますが、本番環境では次のエラーが発生します。
Exception Type: RuntimeError
Exception Value: restricted attribute
Exception Location: /usr/local/lib/python2.7/inspect.py in getargspec, line 813
私は自分のサイトをwebfactionでホストしており、apacheとmod_wsgiで実行しています。何が間違っている可能性がありますか?