~lubuntu-dev/lubuntu-software-center/python3

« back to all changes in this revision

Viewing changes to light-software-center

  • Committer: Julien Lavergne
  • Date: 2015-12-08 22:56:42 UTC
  • Revision ID: gilir@ubuntu.com-20151208225642-o288tk13omrxiaij
Migrate to python3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
 
1
#!/usr/bin/env python3
2
2
# -*- coding:UTF-8 -*-
3
3
#  light-software-center
4
4
#
32
32
    try:
33
33
        MAINFUNC()
34
34
    except KeyboardInterrupt:
35
 
        print "\nGot keyboard interrupt. Exiting..."
 
35
        print("\nGot keyboard interrupt. Exiting...")
36
36
    sys.exit(0)