Skip to content

Commit

Permalink
Issue #304: Rename PyInstaller.__main__ to PyInstaller.main.
Browse files Browse the repository at this point in the history
  • Loading branch information
matysek committed Mar 4, 2013
1 parent 03f7e0e commit 0185b31
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion pyinstaller.py
Expand Up @@ -14,5 +14,5 @@
"""

if __name__ == '__main__':
from PyInstaller.__main__ import run
from PyInstaller.main import run
run()
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -82,7 +82,7 @@

entry_points = """
[console_scripts]
pyinstaller=PyInstaller.__main__:run
pyinstaller=PyInstaller.main:run
pyi-archive_viewer=PyInstaller.cliutils.archive_viewer:run
pyi-bindepend=PyInstaller.cliutils.bindepend:run
pyi-build=PyInstaller.cliutils.build:run
Expand Down
2 changes: 1 addition & 1 deletion tests/runtests.py
Expand Up @@ -47,7 +47,7 @@

from PyInstaller import HOMEPATH
from PyInstaller import compat, configure
from PyInstaller import __main__ as pyi_main
from PyInstaller import main as pyi_main
from PyInstaller.compat import is_py25, is_py26, is_win, is_darwin
from PyInstaller.lib import unittest2 as unittest
from PyInstaller.lib import junitxml
Expand Down

0 comments on commit 0185b31

Please sign in to comment.