Skip to content

Commit 32b2810

Browse files
committed
settings improvement
1 parent 147baad commit 32b2810

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cryptapi/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from django.conf import settings
22

3-
CRYPTAPI_URL = "https://cryptapi.io/api/"
3+
CRYPTAPI_URL = getattr(settings, 'CRYPTAPI_URL', "https://cryptapi.io/api/")

cryptapi/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from distutils.version import StrictVersion
22

33

4-
VERSION = StrictVersion('0.2.0')
4+
VERSION = StrictVersion('0.2.1')

0 commit comments

Comments
 (0)