mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
056c72d50d
* Remove Python 2 support * Remove u-strings * Remove docker symlinks * Remove from travis * Update requirements * Upgrade flake8/pylint * Fixes * Manual * Run pyupgrade * Lint * Remove base_int * Fix * Update platformio_api.py * Update component.cpp
12 lines
225 B
Python
12 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())
|