diff options
Diffstat (limited to 'app/links')
-rw-r--r-- | app/links/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/links/models.py b/app/links/models.py index bc7973c..25bc28a 100644 --- a/app/links/models.py +++ b/app/links/models.py @@ -42,7 +42,7 @@ def get_source(source): r = requests.get(url, timeout=15.001) data = r.json() except: - data = ['markdown': 'error getting markdown'] + data = {'markdown':'error getting markdown'} return data |