~ubuntu-branches/ubuntu/precise/juju/precise-updates

1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
import sys

from juju.control import admin
from juju.errors import JujuError

try:
    admin(sys.argv[1:])
except JujuError, error:
    sys.exit("error: %s" % (error,))