~tribaal/txaws/xss-hardening

« back to all changes in this revision

Viewing changes to bin/aws-status

  • Committer: Robert Collins
  • Date: 2009-04-26 08:32:36 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: robertc@robertcollins.net-20090426083236-hmgjgjd7kni0vxjm
Various refactorings and [minor] cleanups, start of a GUI client, a new credentials and utils module.

Show diffs side-by-side

added added

removed removed

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