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

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed May 2, 2015
1 parent 2f989a4 commit 1be7ce5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipcreate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
pip create, a cli tool to quickly create packages.
"""

from picreate.pipcreate import main
from .pipcreate import main

__author__ = 'Matthias Bussonnier'
__email__ = 'bussonniermatthias@gmail.com'
__version__ = '0.1.0'

if __name__ = '__name__':
if __name__ == '__name__':
main()

0 comments on commit 1be7ce5

Please sign in to comment.