Skip to content

Commit

Permalink
Remove unprintable char
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-rt committed Oct 4, 2018
1 parent 8e6b978 commit a8361ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Two libraries are especially inspiring:

`Requests <http://docs.python-requests.org>`_
If you look at the documentation for this library, or see `the comparison between the urllib2 way and the requests way <https://gist.github.com/973705>`_, you can see a parallel for Plone regarding the way we *have been* versus the way we *should be* writing code.
At the very least, we should have the option of being able to write such clean code.
At the very least, we should have the option of being able to write such clean code.

The API provides grouped functional access to otherwise distributed logic in Plone.
This distribution is a result of two historical factors: reuse of CMF- and Zope-methods, and reasonable but hard to remember splits like `acl_users` and `portal_memberdata`.
Expand Down

1 comment on commit a8361ed

@ale-rt
Copy link
Member Author

@ale-rt ale-rt commented on a8361ed Oct 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed by removing an unprintable character with:

open('about.rst').read().replace('\xa0', ' ')

Please sign in to comment.