From dce1155653c5f1db79eaac85b4acedcb61ef3864 Mon Sep 17 00:00:00 2001 From: "Cody A.W. Somerville" Date: Thu, 21 Jan 2016 22:54:31 -0500 Subject: [PATCH] Add missing import of 'six' to app.py app.py makes reference to six.b without importing module. Change-Id: I7e89ecc8dddccff35dfd5990d339068ae58f23cf --- gertty/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gertty/app.py b/gertty/app.py index 1edaa0d..edf6b48 100644 --- a/gertty/app.py +++ b/gertty/app.py @@ -27,6 +27,7 @@ import threading import warnings import webbrowser +import six from six.moves import queue from six.moves.urllib import parse as urlparse import sqlalchemy.exc