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 / liveusb-creator-launcher < prev    next >
Encoding:
Text File  |  2012-12-13  |  1.0 KB  |  30 lines

  1. #!/usr/bin/python -tt
  2. # coding: utf-8
  3. #
  4. # Copyright ┬⌐ 2012, Tails developers <tails@boum.org>
  5. #
  6. # This copyrighted material is made available to anyone wishing to use, modify,
  7. # copy, or redistribute it subject to the terms and conditions of the GNU
  8. # General Public License v.2.  This program is distributed in the hope that it
  9. # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
  10. # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. # See the GNU General Public License for more details.  You should have
  12. # received a copy of the GNU General Public License along with this program; if
  13. # not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  14. # Floor, Boston, MA 02110-1301, USA.
  15.  
  16. def main():
  17.     import sys
  18.     from liveusb.launcher import LiveUSBLauncher
  19.     try:
  20.         if len(sys.argv) > 1:
  21.             args = sys.argv[1:]
  22.         else:
  23.             args = []
  24.         LiveUSBLauncher(args)
  25.     except KeyboardInterrupt:
  26.         pass
  27.  
  28. if __name__ == '__main__':
  29.     main()
  30.