#2801 closed task (fixed)
Python docs tarball is incorrect in instructions
Reported by: | DJ Lucas | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | BOOK | Version: | SVN |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
Book currently has:
tar --strip-components=1 \ --no-same-owner \ --no-same-permissions \ -C /usr/share/doc/Python-2.6.1/html \ -xvf ../html-2.6.tar.bz2
I believe it should be:
tar --strip-components=1 \ --no-same-owner \ --no-same-permissions \ -C /usr/share/doc/Python-2.6.1/html \ -xvf ../python-2.6-docs-html.tar.bz2
Note:
See TracTickets
for help on using tickets.
Indeed. I had to go through about three iterations to get the name right in the additional downloads section and completely missed the actual instruction. At least it was right in my script. :)
Fixed at revision 7713.