Clean up trailing and leading white space throughout project (#247)

Makes future diffs cleaner for editors that automatically clean up
white space.
pull/244/head
Jon Dufresne 2017-10-23 05:15:27 -07:00 zatwierdzone przez Markus Unterwaditzer
rodzic 0771fc5ae8
commit 2a429cfe94
5 zmienionych plików z 4 dodań i 7 usunięć

Wyświetl plik

@ -1,4 +1,3 @@
License License
======= =======

Wyświetl plik

@ -35,7 +35,7 @@ Bootstraps a buildout-based project.
Simply run this script in a directory containing a buildout.cfg, using the Simply run this script in a directory containing a buildout.cfg, using the
Python that you want bin/buildout to use. Python that you want bin/buildout to use.
Note that by using --find-links to point to local resources, you can keep Note that by using --find-links to point to local resources, you can keep
this script from going over the network. this script from going over the network.
''' '''
@ -79,10 +79,10 @@ exec(urlopen('https://bootstrap.pypa.io/ez_setup.py').read(), ez)
if not options.allow_site_packages: if not options.allow_site_packages:
# ez_setup imports site, which adds site packages # ez_setup imports site, which adds site packages
# this will remove them from the path to ensure that incompatible versions # this will remove them from the path to ensure that incompatible versions
# of setuptools are not in the path # of setuptools are not in the path
import site import site
# inside a virtualenv, there is no 'getsitepackages'. # inside a virtualenv, there is no 'getsitepackages'.
# We can't remove these reliably # We can't remove these reliably
if hasattr(site, 'getsitepackages'): if hasattr(site, 'getsitepackages'):
for sitepackage_path in site.getsitepackages(): for sitepackage_path in site.getsitepackages():

Wyświetl plik

@ -52,7 +52,7 @@ manual: *.rst
presentation: *.rst presentation: *.rst
$(SPHINXBUILD) -b html -t presentation . presentation $(SPHINXBUILD) -b html -t presentation . presentation
dirhtml: dirhtml:
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
@echo @echo

Wyświetl plik

@ -1,4 +1,3 @@
.. include:: ../README.rst .. include:: ../README.rst
Contents Contents

Wyświetl plik

@ -29,4 +29,3 @@ To build the documentation follow these steps:
You can now open the output from ``_build/html/index.html``. To build the You can now open the output from ``_build/html/index.html``. To build the
presentation-version use ``make presentation`` instead of ``make html``. You presentation-version use ``make presentation`` instead of ``make html``. You
can open the presentation at ``presentation/index.html``. can open the presentation at ``presentation/index.html``.