Не следует сравнивать с «Истиной», но с Истиной.
Кроме того, вы сравниваете как в if, так и в elif с "True".
вместо
if file == "True":
print macinput + " command not found"
попробуйте это:
file = exists(macinput+".py")
print "file truth value: ", file
if file:
print macinput + " command found"
else:
print macinput + " command NOT found"
и удали элиф ...