Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vangheem committed Nov 23, 2016
1 parent f8acb7c commit 1cae5aa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plone.server/plone/server/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@
}


ADMIN_TOKEN = base64.b64encode('{}:admin'.format(ROOT_USER_ID).encode('utf-8')).decode('utf-8')
ADMIN_TOKEN = base64.b64encode(
'{}:{}'.format(ROOT_USER_ID, TESTING_SETTINGS['root_user']['password']).encode(
'utf-8')).decode('utf-8')
DEBUG = False


Expand Down

0 comments on commit 1cae5aa

Please sign in to comment.