Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

## 07 (26 May 2021)
* Fix bug in xfile that overwrote the namespace name when saving a document

## 06 (11 January 2017)

* Initial SQL and query banding support (#123)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='tableaudocumentapi',
version='0.6',
version='0.7',
author='Tableau',
author_email='github@tableau.com',
url='https://github.com/tableau/document-api-python',
Expand Down
1 change: 1 addition & 0 deletions tableaudocumentapi/xfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def save_into_archive(xml_tree, filename, new_filename=None):

def _save_file(container_file, xml_tree, new_filename=None):

ET.register_namespace("user", "http://www.tableausoftware.com/xml/user")
if new_filename is None:
new_filename = container_file

Expand Down