File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ latest changes in development for next release
1111
1212.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE!
1313
14- 1.0.1
14+ 1.0.2
1515-----
1616
1717* several bug fixes, including:
Original file line number Diff line number Diff line change 44from . import filth
55from . import detectors
66
7- __version__ = VERSION = "1.0.1 "
7+ __version__ = VERSION = "1.0.2 "
88
99
1010def clean (text , cls = None , ** kwargs ):
Original file line number Diff line number Diff line change 2222with open (os .path .join ('scrubadub' , '__init__.py' )) as stream :
2323 for line in stream :
2424 if 'version' in line .lower ():
25- version = line .split ()[- 1 ]
25+ version = line .split ()[- 1 ]. replace ( '"' , '' ). replace ( "'" , '' )
2626
2727setup (
2828 name = 'scrubadub' ,
You can’t perform that action at this time.
0 commit comments