~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to lib/common/forumutil.py

  • Committer: drtomc
  • Date: 2008-02-25 02:23:18 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:561
app: improve the error message when an app fails to load.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import time
26
26
from mod_python import Cookie
27
27
from urllib import quote
28
 
from conf import conf
29
28
 
30
29
cookie_name = 'ivleforumcookie'
31
30
 
32
31
def make_forum_cookie(login_details):
33
 
    secret = conf.forum_secret
 
32
    secret = "VERYSECRET"
34
33
 
35
34
    login = quote(login_details.login)
36
35
    nick = quote(login_details.nick)