We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147baad commit 32b2810Copy full SHA for 32b2810
cryptapi/config.py
@@ -1,3 +1,3 @@
1
from django.conf import settings
2
3
-CRYPTAPI_URL = "https://cryptapi.io/api/"
+CRYPTAPI_URL = getattr(settings, 'CRYPTAPI_URL', "https://cryptapi.io/api/")
cryptapi/meta.py
@@ -1,4 +1,4 @@
from distutils.version import StrictVersion
4
-VERSION = StrictVersion('0.2.0')
+VERSION = StrictVersion('0.2.1')
0 commit comments