1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-08 11:50:58 +01:00
esphome/esphome/legacy.py

14 lines
263 B
Python
Raw Normal View History

2019-02-15 09:19:18 +00:00
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())