Mercurial > moin > 1.9
changeset 6:2a982e08aee5
Fixed star import.
imported from: moin--main--1.5--patch-7
author | Alexander Schremmer <alex@alexanderweb.de.tla> |
---|---|
date | Thu, 22 Sep 2005 22:31:14 +0000 |
parents | 4ea758d015f9 |
children | 6aa0ae93057c |
files | MoinMoin/multiconfig.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/multiconfig.py Thu Sep 22 22:25:51 2005 +0000 +++ b/MoinMoin/multiconfig.py Thu Sep 22 22:31:14 2005 +0000 @@ -8,7 +8,7 @@ import re, os, sys from MoinMoin import error -from MoinMoin.auth import * +import MoinMoin.auth as authmodule _url_re = None config = {} @@ -167,7 +167,7 @@ actions_excluded = [] # ['DeletePage', 'AttachFile', 'RenamePage'] allow_xslt = 0 attachments = None # {'dir': path, 'url': url-prefix} - auth = [moin_cookie] + auth = [authmodule.moin_cookie] bang_meta = 1 caching_formats = ['text_html'] changed_time_fmt = '%H:%M'