~xubuntu-dev/ubuntu-cdimage/xubuntu-base

« back to all changes in this revision

Viewing changes to bin/update-local-indices

  • Committer: Stéphane Graber
  • Date: 2015-06-17 21:02:28 UTC
  • Revision ID: stgraber@ubuntu.com-20150617210228-sv2eqrdchhje4zjw
And when we thought we were done...

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
sys.path.insert(0, os.path.join(sys.path[0], os.pardir, "lib"))
25
25
from cdimage.build import update_local_indices
26
 
from cdimage.config import config
 
26
from cdimage.config import Config
27
27
 
28
28
 
29
29
def main():
30
30
    parser = OptionParser("%prog")
31
31
    parser.parse_args()
 
32
    config = Config()
32
33
    update_local_indices(config)
33
34
 
34
35