From dfd95f5367e39cbae46d496d42027de956413477 Mon Sep 17 00:00:00 2001 From: Sam Tygier Date: Tue, 14 May 2019 20:40:00 +0100 Subject: Fix DeprecationWarning ABCs from 'collections' Need to explicitly use collections.abc --- Mozo/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mozo/util.py b/Mozo/util.py index 992731d..8c94523 100644 --- a/Mozo/util.py +++ b/Mozo/util.py @@ -21,7 +21,7 @@ import xml.dom.minidom import gi gi.require_version('Gtk', '3.0') gi.require_version('MateMenu', '2.0') -from collections import Sequence +from collections.abc import Sequence from gi.repository import GLib, Gtk, Gdk, GdkPixbuf from gi.repository import MateMenu -- cgit v1.2.1