Skip to content

Commit

Permalink
Fixed a minor bug in v1.3.0 -> v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashank9830 committed Dec 13, 2017
1 parent ab4496f commit dc178c7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
Binary file modified HeadFirstSeries/dist/pylist_nester-1.3.0.tar.gz
Binary file not shown.
Binary file added HeadFirstSeries/dist/pylist_nester-1.3.1.tar.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions HeadFirstSeries/pylist_nester.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def print_lol(the_list, indent = False, level = 0):
if isinstance(each_item, list):
print_lol(each_item, indent, level+1)
else:
#Adding indentations
for tab_stop in range(level):
print("\t", end='')
if indent:
for tab_stop in range(level):
print("\t", end='')
print(each_item)
2 changes: 1 addition & 1 deletion HeadFirstSeries/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup (

name = 'pylist_nester',
version = '1.3.0',
version = '1.3.1',
py_modules = ['pylist_nester'],
author = 'shashank9830',
author_email = 'notrealemail@fakesite.com',
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,18 @@ List of my Python modules

[Latest]

**v1.3.1 - pylist_nester**

Update log for v1.3.1
- Fixed minor bug

[Older Versions]

**v1.3.0 - pylist_nester**

Update log for v1.3.0
- Indentations can now be turned on and off as per user's choice

[Older Versions]

**v1.2.0 - pylist_nester**

Update log for v1.2.0
Expand Down

0 comments on commit dc178c7

Please sign in to comment.