Skip to content

Commit 6a69447

Browse files
committed
Removed leading newline in payload
1 parent 0c53003 commit 6a69447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/vizier/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ def _args_to_payload(self, *args, **kwargs):
613613
script = ""
614614
if (not isinstance(self.keywords, property) and
615615
self.keywords is not None):
616-
script += "\n" + str(self.keywords)
616+
script += str(self.keywords)
617617
# add all items that are not lists
618618
for key, val in body.items():
619619
if type(val) is not list:

0 commit comments

Comments
 (0)