1
0
mirror of https://github.com/gryf/mc_adbfs.git synced 2025-12-18 20:10:21 +01:00

Removed unused elements

There was some items unused:

- In readme there was misleading entry, unused `skip_dirs` option.
- There was unused Exception class.
This commit is contained in:
2019-05-14 20:43:26 +02:00
parent e4a4aa8974
commit 63fdc2c605
2 changed files with 0 additions and 9 deletions

View File

@@ -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 =

8
adbfs
View File

@@ -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',