Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/hartym/django-zero
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Feb 1, 2021
2 parents eb12ed8 + 4b74b02 commit 404d20b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_zero/commands/create.py
Expand Up @@ -89,7 +89,7 @@ def handle_project(self, *args, **options):
UpdateCommand.handle("Projectfile")
os.system("git add --all .")
os.system(
'git commit --quiet --amend -m "Project initialized using Medikit, Cookiecutter and Django-Zero."'
'git commit --amend -m "Project initialized using Medikit, Cookiecutter and Django-Zero."'
)
finally:
logging.getLogger().setLevel(logging.INFO)
Expand Down
2 changes: 1 addition & 1 deletion django_zero/commands/lifecycle.py
Expand Up @@ -96,7 +96,7 @@ def handle(self, *more, extra=None):

self.execute(
sys.executable
+ " -m pip install --quiet {more} -e .{extra}".format(
+ " -m pip install {more} -e .{extra}".format(
more=" ".join(map(shlex.quote, more)), extra="[" + extra + "]" if extra else ""
),
cwd=project_dir,
Expand Down

0 comments on commit 404d20b

Please sign in to comment.