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

Fix missing attribute on conf object

This commit is contained in:
2020-04-26 13:48:21 +02:00
parent 2776668913
commit 039c078a35
2 changed files with 2 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ You can configure behaviour of this plugin using ``.ini`` file located under
root =
adb_command = adb
adb_connect =
try_su = false
where:

1
adbfs
View File

@@ -80,6 +80,7 @@ class Conf(object):
self.suppress_colors = False
self.adb_command = 'adb'
self.adb_connect = ''
self.try_su = False
self.read()
self.connect()