mirror of
https://github.com/esphome/esphome.git
synced 2025-03-15 13:05:16 +01:00
13 lines
225 B
Python
13 lines
225 B
Python
|
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())
|