We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d87890b commit f73887fCopy full SHA for f73887f
qiita_db/metadata_template/base_metadata_template.py
@@ -1014,8 +1014,8 @@ def to_dataframe(self):
1014
conn_handler = SQLConnectionHandler()
1015
cols = sorted(get_table_cols(self._table_name(self._id), conn_handler))
1016
# Get all metadata for the template
1017
- sql = "SELECT {0}FROM qiita.{1}".format(", ".join(cols),
1018
- self._table_name(self.id))
+ sql = "SELECT {0} FROM qiita.{1}".format(", ".join(cols),
+ self._table_name(self.id))
1019
meta = conn_handler.execute_fetchall(sql, (self._id,))
1020
1021
# Create the dataframe and clean it up a bit
0 commit comments