~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-19 09:17:28 UTC
  • mto: This revision was merged to the branch mainline in revision 3227.
  • Revision ID: bialix@ukr.net-20080219091728-qg1xo2i5r4r3u72w
(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:]