Skip to content

Commit b8b30bf

Browse files
authored
0.5.5 dll upgrades (#101)
* quick save * update for 0.5.5 - dll updates
1 parent e4302bb commit b8b30bf

8 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,4 @@ docs/_config.yml# Byte-compiled / optimized / DLL files
182182
# Test files for new functionality
183183
test-notebook.ipynb
184184
test.py
185+
testing.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "python_tabular"
7-
version = "0.5.4"
7+
version = "0.5.5"
88
authors = [
99
{ name="Curtis Stallings", email="curtisrstallings@gmail.com" },
1010
]
42 KB
Binary file not shown.
1.47 MB
Binary file not shown.
7.55 KB
Binary file not shown.
810 KB
Binary file not shown.
11.6 KB
Binary file not shown.

pytabular/query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ def __init__(self, server, effective_user=None) -> None:
5050
connection_string = server.ConnectionString
5151
else:
5252
connection_string = (
53-
f"{server.ConnectionString}Password='{server.ConnectionInfo.Password}'"
53+
f"{server.ConnectionString};Password='{server.ConnectionInfo.Password}'"
5454
)
55-
logger.debug(f"{connection_string}")
55+
logger.debug(f"ADOMD Connection: {connection_string}")
5656
if effective_user is not None:
5757
connection_string += f";EffectiveUserName={effective_user}"
5858
self.ConnectionString = connection_string

0 commit comments

Comments
 (0)