~mmcg069/software-center/bug855666

« back to all changes in this revision

Viewing changes to utils/topapps.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, 
 
10
                                  XAPIAN_VALUE_APPNAME, 
 
11
                                  XAPIAN_VALUE_SUMMARY, 
 
12
                                  XAPIAN_VALUE_POPCON)
 
13
from softwarecenter.paths import XAPIAN_BASE_PATH
11
14
 
12
15
if __name__ == "__main__":
13
16