From 45877bb3a42ac37d6c165997a22ab3bb47c2de11 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Thu, 9 Jul 2020 05:45:46 +0100 Subject: [PATCH] Fix missing import --- app/utils.py | 1 + 1 file changed, 1 insertion(+) 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"