We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba33f2a commit 8501b23Copy full SHA for 8501b23
1 file changed
juju/client/connection.py
@@ -17,7 +17,7 @@
17
from juju import errors, tag, utils, jasyncio
18
from juju.client import client
19
from juju.utils import IdQueue
20
-from juju.version import TARGET_JUJU_VERSION
+from juju.version import CLIENT_VERSION
21
22
log = logging.getLogger('juju.client.connection')
23
@@ -963,7 +963,7 @@ def _build_facades(self, facades_from_connection):
963
async def login(self):
964
params = {}
965
# Set the client version
966
- params['client-version'] = TARGET_JUJU_VERSION
+ params['client-version'] = CLIENT_VERSION
967
params['auth-tag'] = self.usertag
968
if self.password:
969
params['credentials'] = self.password
0 commit comments