2014-10-17 00:54:45 +03:00
|
|
|
#!/usr/bin/env python
|
2014-10-24 02:58:58 +03:00
|
|
|
|
|
|
|
from realms.commands import cli
|
2014-10-17 00:54:45 +03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2014-10-22 23:38:32 +03:00
|
|
|
print
|
|
|
|
print "----------------------------------"
|
|
|
|
print "This script is for development.\n" \
|
|
|
|
"If you installed via pip, " \
|
|
|
|
"you should have realms-wiki in your PATH that should be used instead."
|
|
|
|
print "----------------------------------"
|
|
|
|
print
|
|
|
|
|
2014-10-17 06:18:57 +03:00
|
|
|
cli()
|