Skip to content

Commit efc1c21

Browse files
John FurrJohn Furr
authored andcommitted
Release 0.3.4
1 parent ee50a63 commit efc1c21

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
python-color-logger
22
===================
33

4-
Simple custom color logging for python.
4+
Simple django-like color logging for python project.
55

66
The original code for this project was written by Vinay Sajip and is hosted at: https://bitbucket.org/vinay.sajip/logutils/
77
the original documentation for this project is at: http://plumberjack.blogspot.co.uk/2010/12/colorizing-logging-output-in-terminals.html

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.3'
16+
__version__ = '0.3.4'
1717

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

setup.py

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

1819
f = open(join(dirname(__file__), 'README.txt'))
1920
readme = f.read()

0 commit comments

Comments
 (0)