Skip to content

Commit 96559f0

Browse files
committed
Fixed issue with single-item lists rendering incorrectly. Fixed all naming conventions and coding standards to adhere to PEP8
1 parent 9bd00f2 commit 96559f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

json2html/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
from jsonconv import *
77

88
__author__ = 'Varun Malhotra'
9-
__version__ = '1.0.2'
9+
__version__ = '1.0.3'
1010
__license__ = 'MIT'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
setup(
1111
name = 'json2html',
1212
packages = ['json2html'],
13-
version = '1.0.2',
13+
version = '1.0.3',
1414
install_requires=required,
1515
description = 'JSON to HTML Table Representation',
1616
long_description=open('README.rst').read(),
1717
author = 'Varun Malhotra',
1818
author_email = 'varun2902@gmail.com',
1919
url = 'https://github.com/softvar/json2html',
20-
download_url = 'https://github.com/softvar/json2html/tarball/1.0.2',
20+
download_url = 'https://github.com/softvar/json2html/tarball/1.0.3',
2121
keywords = ['json', 'HTML', 'Table'],
2222
license = 'MIT',
2323
classifiers = (

test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
'''
77

88
__author__ = 'Varun Malhotra'
9-
__version__ = '1.0.2'
9+
__version__ = '1.0.3'
1010
__license__ = 'MIT'

0 commit comments

Comments
 (0)