8000 Fixes print statment error in update_connection sample (#602) · scuml/server-client-python@42592bd · GitHub
[go: up one dir, main page]

Skip to content

Commit 42592bd

Browse files
author
Chris Shin
authored
Fixes print statment error in update_connection sample (tableau#602)
1 parent 3142ee4 commit 42592bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/update_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def main():
5656
connection.username = args.datasource_username
5757
connection.password = args.datasource_password
5858
connection.embed_password = True
59-
print(update_function(resource, connection).content)
59+
print(update_function(resource, connection).__dict__)
6060

6161

6262
if __name__ == '__main__':

0 commit comments

Comments
 (0)
0