Pointing salt-cloud script to new correct location

This commit is contained in:
Joseph Hall 2013-11-08 14:09:18 -07:00
parent 9f3fcfe64f
commit 62a8e31809

View file

@ -1,12 +1,12 @@
#!/usr/bin/env python
import saltcloud.cli
import salt.cloud.cli
def main():
'''
The main function for salt-cloud
'''
cloud = saltcloud.cli.SaltCloud()
cloud = salt.cloud.cli.SaltCloud()
cloud.run()
if __name__ == '__main__':