~txawsteam/txaws/trunk

« back to all changes in this revision

Viewing changes to bin/aws-status

  • Committer: Duncan McGreggor
  • Date: 2009-08-18 20:29:18 UTC
  • mfrom: (7.1.2 413741-pep8-cleanup)
  • Revision ID: duncan@canonical.com-20090818202918-h6vxh0y42ics0s93
Merged 413741-pep8-cleanup [r=oubiwann,lifeless] [f=413741].

This change brought comments, docstrings, imports, and long lines into a
semblance of consistency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# Copyright (C) 2009 Robert Collins <robertc@robertcollins.net>
3
3
# Licenced under the txaws licence available at /LICENSE in the txaws source.
4
 
 
5
4
import sys
6
5
from txaws.client.gui.gtk import main
 
6
 
 
7
 
7
8
sys.exit(main(sys.argv))
8
9