Skip to content

Commit a4f6ef0

Browse files
authored
Merge pull request #2 from gnulnx/python3
Fixed python2 style string
2 parents 5470d02 + e160ff3 commit a4f6ef0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

logutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import logging
1414
from string import Template
1515

16-
__version__ = '0.3.5'
16+
__version__ = '0.3.6'
1717

1818
class NullHandler(logging.Handler):
1919
"""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def description():
1313
description = pypandoc.convert('README.md', 'rst')
1414
return description
1515
except (IOError, ImportError) as e:
16-
print "YOU DID NOT CONVERT README.MD"
16+
print("YOU DID NOT CONVERT README.MD")
1717
pass
1818

1919
f = open(join(dirname(__file__), 'README.txt'))

0 commit comments

Comments
 (0)