home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / whisperback < prev    next >
Encoding:
Text File  |  2012-12-13  |  1.1 KB  |  33 lines

  1. #!/usr/bin/python
  2. # -*- coding: UTF-8 -*-
  3.  
  4. ########################################################################
  5. # WhisperBack - Send a feedback in an encrypted mail
  6. # Copyright (C) 2009-2012 Tails developers <tails@boum.org>
  7. # This program is  free software; you can redistribute  it and/or modify
  8. # it under the  terms of the GNU General Public  License as published by
  9. # the Free Software Foundation; either  version 3 of the License, or (at
  10. # your option) any later version.
  11. # This program  is distributed in the  hope that it will  be useful, but
  12. # WITHOUT   ANY  WARRANTY;   without  even   the  implied   warranty  of
  13. # MERCHANTABILITY  or FITNESS  FOR A  PARTICULAR PURPOSE.   See  the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18. ########################################################################
  19.  
  20. """WhisperBack launcher script
  21.  
  22. """
  23.  
  24. import gtk
  25. import gettext
  26.  
  27. import whisperBack
  28.  
  29. ui = whisperBack.WhisperBackUI()
  30. gtk.main()
  31.