Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Removes debug prints and bumps the version
Browse files Browse the repository at this point in the history
  • Loading branch information
peterldowns committed Sep 11, 2012
1 parent 20d5c8b commit 3c1cb8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions lggr/__init__.py
Expand Up @@ -272,10 +272,6 @@ def _find_caller(self):
rv = ('(unknown file)', 0, '(unknown function)', '(code not available)', [], None)
f = inspect.currentframe()
while hasattr(f, 'f_code'):
print '\n'
print os.path.splitext(f.f_code.co_filename)[0], '?'
print os.path.splitext(_srcfile)[0]
print '------'
co = f.f_code
filename = os.path.normcase(co.co_filename)
# When lggr is imported as a module, the `_src_file`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,12 +2,12 @@
setup(
name = 'lggr',
packages = ['lggr'],
version = '0.1.3',
version = '0.1.4',
description = 'Python Logging For Humans',
author = 'Peter Downs',
author_email = 'peterldowns@gmail.com',
url = 'https://github.com/peterldowns/lggr',
download_url = 'https://github.com/peterldowns/lggr/tarball/v0.1.3',
download_url = 'https://github.com/peterldowns/lggr/tarball/v0.1.4',
keywords = ['logging', 'log', 'coroutine'],
classifiers = [
'Programming Language :: Python',
Expand Down

0 comments on commit 3c1cb8f

Please sign in to comment.