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

(cherry picked from commit c2cd72d)
  • Loading branch information
sigmavirus24 committed May 21, 2017
1 parent 758ca6e commit dd40b39
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 dd40b39

Please sign in to comment.