Skip to content

Commit

Permalink
Add more "replace" functions to fix quotes. Closes #82
Browse files Browse the repository at this point in the history
  • Loading branch information
elserj committed May 29, 2024
1 parent f7edaa4 commit a7a13dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions curate/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,6 @@
SITE_ID = 1
LOGIN_REDIRECT_URL = '/'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
ENTREZ_EMAIL = os.environ.get('ENTREZ_EMAIL')
ENTREZ_API_KEY = os.environ.get('ENTREZ_API_KEY')
AMIGO_BASE_URL = os.environ.get('AMIGO_BASE_URL')
ENTREZ_EMAIL = os.environ.get('ENTREZ_EMAIL').replace('"','')
ENTREZ_API_KEY = os.environ.get('ENTREZ_API_KEY').replace('"','')
AMIGO_BASE_URL = os.environ.get('AMIGO_BASE_URL').replace('"','')

0 comments on commit a7a13dc

Please sign in to comment.