Skip to content

Commit

Permalink
Allow star imports from twine
Browse files Browse the repository at this point in the history
Unicode literals on Python 2 prevent people from being able to use

    from twine import *

Closes gh-209
  • Loading branch information
sigmavirus24 committed Aug 31, 2016
1 parent 5497691 commit c2cd72d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion twine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import absolute_import, division, print_function
from __future__ import unicode_literals

__all__ = (
"__title__", "__summary__", "__uri__", "__version__", "__author__",
Expand Down

0 comments on commit c2cd72d

Please sign in to comment.