aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-07-09 05:45:46 +0100
committerrubenwardy <rw@rubenwardy.com>2020-07-09 05:45:46 +0100
commit45877bb3a42ac37d6c165997a22ab3bb47c2de11 (patch)
treecb2a20928231c02865bd5723a8ce1cd5f24dfa75
parenteb3d067e2636cd9f0864256cbd4590b1a6d07337 (diff)
downloadcheatdb-45877bb3a42ac37d6c165997a22ab3bb47c2de11.tar.xz
Fix missing import
-rw-r--r--app/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/utils.py b/app/utils.py
index cd386d4..3478f4a 100644
--- a/app/utils.py
+++ b/app/utils.py
@@ -22,6 +22,7 @@ from .models import *
from . import app
import random, string, os, imghdr
from urllib.parse import urljoin
+from collections.abc import Iterable
def abs_url_for(path, **kwargs):
scheme = "https" if app.config["BASE_URL"][:5] == "https" else "http"