Skip to content

Commit

Permalink
more fixes for installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Malmgren committed Oct 31, 2015
1 parent be785db commit 30e7f26
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ latest changes in development for next release

.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE!
1.0.1
1.0.2
-----

* several bug fixes, including:
Expand Down
2 changes: 1 addition & 1 deletion scrubadub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from . import filth
from . import detectors

__version__ = VERSION = "1.0.1"
__version__ = VERSION = "1.0.2"


def clean(text, cls=None, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
with open(os.path.join('scrubadub', '__init__.py')) as stream:
for line in stream:
if 'version' in line.lower():
version = line.split()[-1]
version = line.split()[-1].replace('"', '').replace("'", '')

setup(
name='scrubadub',
Expand Down

0 comments on commit 30e7f26

Please sign in to comment.