~mmcg069/software-center/bug855666

« back to all changes in this revision

Viewing changes to utils/installedapps.py

  • Committer: Michael Vogt
  • Date: 2011-05-18 07:44:26 UTC
  • mto: This revision was merged to the branch mainline in revision 1789.
  • Revision ID: michael.vogt@ubuntu.com-20110518074426-zmjmq8cr8qj3wwg1
utils/*: make utils pyflakes clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
import xapian
7
7
 
8
8
sys.path.insert(0, "../")
9
 
from softwarecenter.enums import *
10
 
from softwarecenter.utils import *
 
9
from softwarecenter.enums import XAPIAN_VALUE_PKGNAME, XAPIAN_VALUE_APPNAME, XAPIAN_VALUE_SUMMARY
 
10
from softwarecenter.paths import XAPIAN_BASE_PATH
 
11
 
11
12
 
12
13
if __name__ == "__main__":
13
14