diff options
author | Sam Tygier <[email protected]> | 2019-05-14 20:40:00 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-12 17:50:08 +0200 |
commit | bf56157cb7f5b7cb851cc709889c27c4a168205b (patch) | |
tree | cb7f803e37956b4c4f982cebe10e0a0ef2b50932 /Mozo/util.py | |
parent | 3e2b11efda5b15a1cb92a15513f2a5532e8a263c (diff) | |
download | mozo-bf56157cb7f5b7cb851cc709889c27c4a168205b.tar.bz2 mozo-bf56157cb7f5b7cb851cc709889c27c4a168205b.tar.xz |
Fix DeprecationWarning ABCs from 'collections'
Need to explicitly use collections.abc
Diffstat (limited to 'Mozo/util.py')
-rw-r--r-- | Mozo/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |