We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 128bc1f + b38836d commit 7c40d33Copy full SHA for 7c40d33
install.py
@@ -82,7 +82,7 @@ def install_dependency_package(self):
82
elif subprocess.call("which apt-get", shell=True) == 0:
83
package = "python-qt4"
84
subprocess.call("apt-get -q update", shell=True)
85
- if subprocess.call("apt-get -q -y install mtools util-linux parted python-qt4", shell=True) == 0:
+ if subprocess.call("apt-get -q -y install mtools util-linux parted python-qt4 python-dbus", shell=True) == 0:
86
result = True
87
elif subprocess.call("which zypper", shell=True) == 0:
88
@@ -102,4 +102,4 @@ def install_dependency_package(self):
102
103
install = Install()
104
105
-install.mbusb()
+install.mbusb()
0 commit comments