esphome/esphome/legacy.py
2019-02-15 10:19:18 +01:00

13 lines
263 B
Python

from __future__ import print_function
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())