Commit 121775d85a79adda9d10f5a4de19db215aded1b3

Authored by Tássia Camões Araújo
1 parent 250f7627
Exists in master and in 1 other branch add_vagrant

set default to desktopapps.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/config.py
... ... @@ -46,7 +46,7 @@ class Config(Singleton):
46 46 self.base_dir = os.path.expanduser("~/.app-recommender/")
47 47 # filters for valid packages
48 48 self.filters_dir = os.path.join(self.base_dir,"filters")
49   - self.pkgs_filter = os.path.join(self.filters_dir,"programs")
  49 + self.pkgs_filter = os.path.join(self.filters_dir,"desktopapps")
50 50 # package information packages
51 51 self.axi = "/var/lib/apt-xapian-index/index"
52 52 self.axi_programs = os.path.join(self.base_dir,"axi_programs")
... ... @@ -57,7 +57,7 @@ class Config(Singleton):
57 57 self.popcon = 1
58 58 self.popcon_programs = os.path.join(self.base_dir,"popcon_programs")
59 59 self.popcon_desktopapps = os.path.join(self.base_dir,"popcon_desktopapps")
60   - self.popcon_index = self.popcon_programs
  60 + self.popcon_index = self.popcon_desktopapps
61 61 self.popcon_dir = os.path.join(self.base_dir,"popcon-entries")
62 62 self.max_popcon = 1000
63 63 # popcon clustering
... ...