diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-28 15:50:05 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-28 15:50:05 -0400 |
commit | 27913554a85c308d81e6c018669d0246ceecc639 (patch) | |
tree | 191305298ce66000c95c9c8fec1e27350f0d206e /setup.py | |
parent | 90571b3a3a4eca329ec14e9bd142ad2b96526d99 (diff) | |
download | sqlalchemy-27913554a85c308d81e6c018669d0246ceecc639.tar.gz |
trailing whitespace bonanza
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -45,11 +45,11 @@ ext_modules = [ sources=['lib/sqlalchemy/cextension/resultproxy.c']) ] -ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError) +ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError) if sys.platform == 'win32' and sys.version_info > (2, 6): # 2.6's distutils.msvc9compiler can raise an IOError when failing to # find the compiler - ext_errors += (IOError,) + ext_errors += (IOError,) class BuildFailed(Exception): @@ -95,7 +95,7 @@ def find_packages(dir_): packages.append(fragment.replace(os.sep, '.')) return packages -v_file = open(os.path.join(os.path.dirname(__file__), +v_file = open(os.path.join(os.path.dirname(__file__), 'lib', 'sqlalchemy', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v_file.read()).group(1) |