~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-02-19 22:21:02 UTC
  • mfrom: (3224.2.1 bugfix.192924)
  • Revision ID: pqm@pqm.ubuntu.com-20080219222102-rqz9oxck1qbibvkm
(bialix) Include quick-start-summary.svg file to python-based installer
 for Windows (bug #192924)

Show diffs side-by-side

added added

removed removed

Lines of Context:
237
237
        for root, dirs, files in os.walk('doc'):
238
238
            r = []
239
239
            for f in files:
240
 
                if os.path.splitext(f)[1] in ('.html','.css','.png','.pdf'):
 
240
                if (os.path.splitext(f)[1] in ('.html','.css','.png','.pdf')
 
241
                    or f == 'quick-start-summary.svg'):
241
242
                    r.append(os.path.join(root, f))
242
243
            if r:
243
244
                relative = root[4:]