Skip to content

Commit

Permalink
Merge pull request bryanthowell-tableau#85 from bryantbhowell/5.1.3
Browse files Browse the repository at this point in the history
Typo was breaking publish_workbook in versions before 30. Increment to 5.1.3
  • Loading branch information
Bryant Howell authored Feb 27, 2020
2 parents dade1d8 + 27ae93a commit a373943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='tableau_tools',
python_requires='>=3.6',
version='5.1.2',
version='5.1.3',
packages=['tableau_tools', 'tableau_tools.tableau_rest_api', 'tableau_tools.tableau_documents',
'tableau_tools.examples', 'tableau_tools.tableau_rest_api.methods'],
url='https://github.com/bryantbhowell/tableau_tools',
Expand Down
2 changes: 1 addition & 1 deletion tableau_rest_api/methods/workbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def publish_workbook(self, workbook_filename: str, workbook_name: str, project_o
show_tabs: bool = True, check_published_ds: bool = True,
oauth_flag: bool = False) -> str:
project_luid = project_obj.luid
xml = self.publish_content('workbook', workbook_filename, workbook_name, project_luid,
xml = self._publish_content('workbook', workbook_filename, workbook_name, project_luid,
{"overwrite": overwrite}, connection_username, connection_password,
save_credentials, show_tabs=show_tabs, check_published_ds=check_published_ds,
oauth_flag=oauth_flag)
Expand Down

0 comments on commit a373943

Please sign in to comment.