Description: use separately installed appdirs package
 easydev used its own convenience copy, which we don't need.
Author: Afif Elghraoui <afif@debian.org>
Forwarded: not-needed
Last-Update: 2019-01-22
--- a/easydev/config_tools.py
+++ b/easydev/config_tools.py
@@ -370,7 +370,7 @@
 
     def __init__(self, name, verbose=False):
         self.verbose = verbose
-        from easydev import appdirs
+        import appdirs
         self.appdirs = appdirs.AppDirs(name)
 
     def init(self):
--- a/test/test_appdirs.py
+++ b/test/test_appdirs.py
@@ -11,16 +11,16 @@
         app.user_log_dir
 
     with mock.patch("sys.platform", "darwin"):
-        from easydev import appdirs
+        import appdirs
         app = appdirs.AppDirs("test")
         getter(app)
 
     with mock.patch("sys.platform", "win32"):
-        from easydev import appdirs
+        import appdirs
         app = appdirs.AppDirs("test")
         getter(app)
 
     with mock.patch("sys.platform", "linux"):
-        from easydev import appdirs
+        import appdirs
         app = appdirs.AppDirs("test")
         getter(app)
