fixing small error.

This commit is contained in:
staticsafe 2012-02-23 11:19:41 -05:00
parent c78e80ecd9
commit f0e26303de
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def sudocheck():
def macportscheck():
# This function checks if MacPorts exists on a OSX machine or not
portspath = "/opt/local/bin/port"
if os.path.isfile(portspath) === False:
if os.path.isfile(portspath) == False:
print "We need MacPorts to run this script for you! Get it from here - http://www.macports.org/"
raise SystemExit
else: