diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-07-09 05:45:46 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-07-09 05:45:46 +0100 |
commit | 45877bb3a42ac37d6c165997a22ab3bb47c2de11 (patch) | |
tree | cb2a20928231c02865bd5723a8ce1cd5f24dfa75 | |
parent | eb3d067e2636cd9f0864256cbd4590b1a6d07337 (diff) | |
download | cheatdb-45877bb3a42ac37d6c165997a22ab3bb47c2de11.tar.xz |
Fix missing import
-rw-r--r-- | app/utils.py | 1 |
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" |