~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Alexander Belchenko
  • Date: 2007-12-15 18:16:06 UTC
  • mto: This revision was merged to the branch mainline in revision 3117.
  • Revision ID: bialix@ukr.net-20071215181606-4omsw00cjnis4qbl
Python-based installer should contain png and pdf in Docs.

Show diffs side-by-side

added added

removed removed

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