Skip to content

Commit

Permalink
fix error on SUPPERUSER_RELAM (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sida Say authored Apr 28, 2021
1 parent b356097 commit bfb2fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
print("PI_PEPPER not set! Refusing to start")
sys.exit(1)
# The realm, where users are allowed to login as administrators
SUPERUSER_REALM = os.environ.get('SUPERUSER_REALM', '['administrator']')
SUPERUSER_REALM = os.environ.get('SUPERUSER_REALM', ['administrator'])
SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI', 'sqlite:////data/privacyidea/privacyidea.db')
PI_ENCFILE = os.environ.get("PI_ENCFILE", "/data/privacyidea/encfile")
PI_HSM = os.environ.get("PI_HSM", "default")
Expand Down

0 comments on commit bfb2fb4

Please sign in to comment.