Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Commit

Permalink
remove future import
Browse files Browse the repository at this point in the history
  • Loading branch information
sergirubio committed Mar 31, 2020
1 parent 033e73b commit 06320f3
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
# Always prefer setuptools over distutils
import os, imp, sys
from setuptools import setup, find_packages
try:
from __future__ import print_function
from builtins import str
except:
pass

__doc__ = """
Expand All @@ -29,9 +24,11 @@
-------------------------------------------------------------------------------
"""

if 'help' in str(sys.argv):
print(__doc__)
try:
#python3
from builtins import str
except:
pass

release = open('fandango/VERSION').read()

Expand Down

0 comments on commit 06320f3

Please sign in to comment.