Skip to content

Commit

Permalink
v1.1.4 - convert / chars to _ chars in file names
Browse files Browse the repository at this point in the history
  • Loading branch information
mgk committed Mar 23, 2016
1 parent 75a489c commit 25c95cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Change Log
This project uses [Semantic Versioning](http://semver.org/).

## [**1.1.4**](https://github.com/humulabs/humu-download/releases/tag/v1.1.4) - 2016-03-23

### Fixed
- handle data file names with "/" characters by converting to "_" characters

## [**1.1.2**](https://github.com/humulabs/humu-download/releases/tag/v1.1.2) - 2016-03-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion humu_download/__init__.py
@@ -1 +1 @@
__version__ = '1.1.2'
__version__ = '1.1.4'
2 changes: 1 addition & 1 deletion humu_download/main.py
Expand Up @@ -59,7 +59,7 @@ def read_csv_file(self):
name = '{}-{}-{}'.format(row['ID'], row['_id'], ds)
self.files.append({
'data_series_name': ds,
'name': name,
'name': name.replace('/', '_'),
'url': url,
'size': size})

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@

setup(
name='humu-download',
version='1.1.2',
version='1.1.4',
description='CLI and curses UI for dowloading Humu data files',
long_description=__doc__,
url='https://github.com/humulabs/humu-download/blob/master/README.rst',
Expand Down

0 comments on commit 25c95cb

Please sign in to comment.