esphome/esphome/legacy.py

13 lines
225 B
Python
Raw Normal View History

2019-02-15 10:19:18 +01:00
import sys
def main():
print("The esphomeyaml command has been renamed to esphome.")
print("")
print("$ esphome {}".format(' '.join(sys.argv[1:])))
return 1
if __name__ == "__main__":
sys.exit(main())