Skip to content

Commit 44eea5f

Browse files
committed
format
1 parent ef2cab1 commit 44eea5f

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

pretext/cli.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,16 @@ def upgrade() -> None:
197197
"""
198198
extras = []
199199
import importlib.util
200+
200201
if importlib.util.find_spec("prefig") is not None:
201-
log.debug("The 'prefig' package is installed; will attempt to upgrade it as well.")
202+
log.debug(
203+
"The 'prefig' package is installed; will attempt to upgrade it as well."
204+
)
202205
extras.append("prefigure")
203206
if importlib.util.find_spec("pelican") is not None:
204-
log.debug("The 'pelican' package is installed; will attempt to upgrade it as well.")
207+
log.debug(
208+
"The 'pelican' package is installed; will attempt to upgrade it as well."
209+
)
205210
extras.append("homepage")
206211
if len(extras) > 0:
207212
log.info(f"Upgrading PreTeXt (with extras: {', '.join(extras)})")

0 commit comments

Comments
 (0)