From 8e8a91cd8938468f3b509f4736027c64259bd99d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 7 Mar 2017 16:06:43 +0100 Subject: [PATCH] Fixed T50811: 'bam' command cannot import name 'main' The 'bam' CLI command entry point was pointing to the wrong module. This is now fixed. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 032d568..8c23813 100644 --- a/setup.py +++ b/setup.py @@ -44,9 +44,8 @@ setup( }, entry_points={ 'console_scripts': [ - 'bam = bam:main', + 'bam = bam.cli:main', ], }, install_requires=requires, ) -