~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-15 20:04:56 UTC
  • mfrom: (3113.4.1 win32.installer)
  • Revision ID: pqm@pqm.ubuntu.com-20071215200456-98e8x5v3iconkigg
(bialix) 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:]