Skip to content

Commit

Permalink
Merge pull request #65 from astro-datalab/fixing_99f72b
Browse files Browse the repository at this point in the history
bug striping result set to one character
  • Loading branch information
iglesu authored Oct 31, 2023
2 parents bfc8a09 + b9239d7 commit cde69f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dl/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.22.0"
__version__ = "2.22.1"
2 changes: 1 addition & 1 deletion dl/queryClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -2309,7 +2309,7 @@ def _results(self, token=None, jobId=None, fname=None, delete=True, profile='def

#r = requests.get (dburl, headers=headers)
r = self.getStreamURL(dburl, headers=headers, fname=fname)
return qcToString(r[1].strip())
return qcToString(r)


# --------------------------
Expand Down

0 comments on commit cde69f3

Please sign in to comment.