From d57a6ee3bad9bb8a5617d644d40171270ae075f5 Mon Sep 17 00:00:00 2001 From: Yao-Yuan Mao Date: Tue, 20 Nov 2018 21:15:28 -0500 Subject: [PATCH] bug fix --- SAGA/database/external.py | 2 +- SAGA/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SAGA/database/external.py b/SAGA/database/external.py index 6bd1337..5f8b97b 100644 --- a/SAGA/database/external.py +++ b/SAGA/database/external.py @@ -209,7 +209,7 @@ def construct_query(cls, ra, dec, radius=1.0, db_table_name=None): q = cls._query_template.format(**locals()) q = re.sub(r'[^\S\n]+', ' ', q).strip() if not select_into_mydb: - q = q.replace('INTO mydb.{} '.format(db_table_name), '') + q = q.replace('INTO mydb.{}'.format(db_table_name), '') return q diff --git a/SAGA/version.py b/SAGA/version.py index 51a8a56..98647bb 100644 --- a/SAGA/version.py +++ b/SAGA/version.py @@ -1,4 +1,4 @@ """ SAGA package version """ -__version__ = '0.10.13' +__version__ = '0.10.14'