We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac42a72 commit ebdcbfdCopy full SHA for ebdcbfd
installer.py
@@ -3,7 +3,7 @@
3
import os
4
5
6
-class DepInstaller():
+class dep_installer():
7
8
def __init__(self):
9
pass
@@ -22,7 +22,6 @@ def ins(self):
22
os.system('sudo apt-get install binutils-arm-linux-gnueabi')
23
os.system('sudo apt-get install libncurses5-dev')
24
print "\n[+] Installation of ARM tools complete"
25
-
26
except OSError as ose:
27
print "\n[!] Error installing ARM dependencies"
28
@@ -35,7 +34,7 @@ def ins(self):
35
34
36
37
def main():
38
- dep = DepInstaller()
+ dep = dep_installer()
39
dep.ins()
40
41
if __name__ == '__main__':
0 commit comments