~rockstar/entertainer/package-structure-apocalypse

« back to all changes in this revision

Viewing changes to entertainer

  • Committer: Paul Hummer
  • Date: 2009-04-30 01:11:22 UTC
  • Revision ID: paul@eventuallyanyway.com-20090430011122-17be1lws6gbxtwb6
Moved entertainerlib.frontend to entertainerlib.client

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
 
'''Main frontend executable'''
 
2
'''Main client executable'''
3
3
 
4
4
__licence__ = "GPLv2"
5
5
__copyright__ = "2007, Lauri Taimila"
6
6
__author__ = "Lauri Taimila <lauri@taimila.com>"
7
7
__version__ = "0.2"
8
8
 
9
 
from entertainerlib.frontend import main
 
9
from entertainerlib.client import main
10
10
 
11
11
if __name__ == '__main__':
12
12
    main()