Skip to content

Commit c05cccb

Browse files
committed
Fix python import command in Makefile
1 parent fe84880 commit c05cccb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
BIN := .tox/py3/bin
22
PY := $(BIN)/python3
33
PIP := $(BIN)/pip3
4-
VERSION := $(shell $(PY) -c "from version import CLIENT_VERSION; print(CLIENT_VERSION)")
4+
VERSION := $(shell $(PY) -c "from juju.version import CLIENT_VERSION; print(CLIENT_VERSION)")
55

66
.PHONY: clean
77
clean:

0 commit comments

Comments
 (0)