~ubuntu-branches/ubuntu/raring/radiotray/raring

« back to all changes in this revision

Viewing changes to radiotray

  • Committer: Bazaar Package Importer
  • Author(s): Elías Alejandro Año Mendoza
  • Date: 2010-06-15 02:19:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100615021900-m8wrzkbq8kez1etv
Tags: 0.6-2
Added build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
try:
7
7
        from radiotray import radiotray
8
 
except:
 
8
except ImportError:
9
9
        basedir = os.path.dirname(os.path.realpath(__file__))
10
10
        workdir = join(basedir,'src')
11
11
        sys.path.insert(0, workdir)
12
12
        os.chdir(workdir)
13
13
        import radiotray 
14
14
        
15
 
radiotray.main()
 
15
radiotray.main(sys.argv[1:])