Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yymao committed Nov 21, 2018
1 parent a6cd08d commit d57a6ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SAGA/database/external.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion SAGA/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
SAGA package version
"""
__version__ = '0.10.13'
__version__ = '0.10.14'

0 comments on commit d57a6ee

Please sign in to comment.