Skip to content

Commit 798037a

Browse files
committed
Fix texts.
1 parent 5bc6ed9 commit 798037a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ This will automatically:
7878

7979
Or you just want to participate in the development of some other app.
8080

81-
Use `up` initialize tools and the environment to develop that application.
81+
Use `tools` and `up` commands to initialize tools and the environment to develop the application.
8282

8383
``` bash
8484
ma tools

src/makeapp/apptools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .helpers.files import FileHelper
99
from .helpers.vcs import VcsHelper
1010
from .helpers.venvs import VenvHelper
11-
from .utils import chdir, configure_logging, run_command, Uv
11+
from .utils import chdir, configure_logging, Uv
1212

1313
LOG = logging.getLogger(__name__)
1414

@@ -101,7 +101,7 @@ def get(cls, *, package_path: Path) -> 'PackageData':
101101
if len(version) < 3:
102102
raise ProjectorExeption(f'Unsupported version format: {version}.')
103103

104-
LOG.info(f'Current version from package: `{version}`')
104+
LOG.info(f'Current version from package: `{".".join(map(str, version))}`')
105105

106106
result = PackageData(
107107
version=version,

0 commit comments

Comments
 (0)