diff options
author | Sam Tygier <[email protected]> | 2019-05-14 20:40:00 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-12 15:26:43 +0200 |
commit | dfd95f5367e39cbae46d496d42027de956413477 (patch) | |
tree | 31c7c53503fb0ba4ea01d08cf62d08c2f31dacd5 | |
parent | 0b14be3a52aed75e2078cd973cf58ab65d31e851 (diff) | |
download | mozo-dfd95f5367e39cbae46d496d42027de956413477.tar.bz2 mozo-dfd95f5367e39cbae46d496d42027de956413477.tar.xz |
Fix DeprecationWarning ABCs from 'collections'
Need to explicitly use collections.abc
-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 |