Skip to content

Commit

Permalink
Remove upperfy call
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
bmclaughlin committed Feb 22, 2024
1 parent 7fbed1e commit ba0de63
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions galaxy_ng/app/management/commands/dump_auth_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import os
from django.core.management.base import BaseCommand
from django.conf import settings
from dynaconf.utils import upperfy


class Command(BaseCommand):
Expand Down Expand Up @@ -51,7 +50,7 @@ def format_config_data(self, type, keys, prefix):
k = key
if prefix in key:
k = key[len(prefix):]
v = settings.get(upperfy(key), default=None)
v = settings.get(key, default=None)
config["configuration"].update({k: v})
return config

Expand Down

0 comments on commit ba0de63

Please sign in to comment.