~nataliabidart/software-center/fix-986563

« back to all changes in this revision

Viewing changes to mpt-center

  • Committer: Michael Vogt
  • Date: 2009-07-31 13:56:41 UTC
  • Revision ID: michael.vogt@ubuntu.com-20090731135641-s4fihta5teyhywlg
initialĀ UI

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
from AppCenter.AppCenter import AppCenter
 
4
 
 
5
 
 
6
if __name__ == "__main__":
 
7
   datadir = "./data"
 
8
   ac = AppCenter(datadir)
 
9
   ac.run()
 
10