Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi-r3v0 committed Oct 19, 2017
1 parent ac42a72 commit ebdcbfd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions installer.py
Expand Up @@ -3,7 +3,7 @@
import os


class DepInstaller():
class dep_installer():

def __init__(self):
pass
Expand All @@ -22,7 +22,6 @@ def ins(self):
os.system('sudo apt-get install binutils-arm-linux-gnueabi')
os.system('sudo apt-get install libncurses5-dev')
print "\n[+] Installation of ARM tools complete"

except OSError as ose:
print "\n[!] Error installing ARM dependencies"

Expand All @@ -35,7 +34,7 @@ def ins(self):


def main():
dep = DepInstaller()
dep = dep_installer()
dep.ins()

if __name__ == '__main__':
Expand Down

0 comments on commit ebdcbfd

Please sign in to comment.