Skip to content

Commit

Permalink
Fix a naming conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lmacken committed Sep 7, 2011
1 parent 5507b67 commit 4fa8acf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -34,7 +34,7 @@
],
entry_points={
'console_scripts' : [
'tbgrep = tbgrep.commands:tbgrep',
'tbgrep = tbgrep.commands:main',
],
},
)
2 changes: 1 addition & 1 deletion tbgrep/commands.py
Expand Up @@ -23,7 +23,7 @@

__doc__ = tbgrep.__doc__

def tbgrep():
def main():
stats = False
if '--stats' in sys.argv:
stats = True
Expand Down

0 comments on commit 4fa8acf

Please sign in to comment.