From 63fdc2c605e0e5de6910c5304d04fe0ed13d5448 Mon Sep 17 00:00:00 2001 From: gryf Date: Tue, 14 May 2019 20:43:26 +0200 Subject: [PATCH] Removed unused elements There was some items unused: - In readme there was misleading entry, unused `skip_dirs` option. - There was unused Exception class. --- README.rst | 1 - adbfs | 8 -------- 2 files changed, 9 deletions(-) diff --git a/README.rst b/README.rst index 1de0278..c4a5c5f 100644 --- a/README.rst +++ b/README.rst @@ -66,7 +66,6 @@ You can configure behaviour of this plugin using ``.ini`` file located under [adbfs] debug = false - skip_dirs = true dirs_to_skip = ["acct", "charger", "d", "dev", "proc", "sys"] suppress_colors = false root = diff --git a/adbfs b/adbfs index c4e2686..e99225a 100755 --- a/adbfs +++ b/adbfs @@ -34,14 +34,6 @@ def check_output(command_list, stderr=None): return result -class NoBoxFoundException(OSError): - """ - Exception raised in case of not found either toolbox or busybox on remote - filesystem accessed via adb - """ - pass - - class Conf(object): """Simple config parser""" boxes = {'busybox': {'ls': 'busybox ls -anel',