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
=======

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
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.
'''
@ -79,10 +79,10 @@ exec(urlopen('https://bootstrap.pypa.io/ez_setup.py').read(), ez)
if not options.allow_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
import site
# inside a virtualenv, there is no 'getsitepackages'.
# inside a virtualenv, there is no 'getsitepackages'.
# We can't remove these reliably
if hasattr(site, 'getsitepackages'):
for sitepackage_path in site.getsitepackages():

Wyświetl plik

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

Wyświetl plik

@ -1,4 +1,3 @@
.. include:: ../README.rst
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
presentation-version use ``make presentation`` instead of ``make html``. You
can open the presentation at ``presentation/index.html``.