mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
13 lines
263 B
Python
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())
|