Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/utils
diff options
context:
space:
mode:
authorDaniel Girtler <blackrabbit256@gmail.com>2023-05-12 02:30:09 +1000
committerGitHub <noreply@github.com>2023-05-11 18:30:09 +0200
commit89cefb9a1c7d4c4968e7d8645149078e601c9d1c (patch)
tree12c84bdcef1b0ef3f8a21977e25c7f0f89388138 /archinstall/lib/utils
parent6e6b850a8f687b193172aaa321d49bd2956c1d4f (diff)
Cleanup imports and unused code (#1801)
* Cleanup imports and unused code * Update build check * Keep deprecation exception * Simplify logging --------- Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
Diffstat (limited to 'archinstall/lib/utils')
-rw-r--r--archinstall/lib/utils/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/utils/util.py b/archinstall/lib/utils/util.py
index ded480ae..34716f4a 100644
--- a/archinstall/lib/utils/util.py
+++ b/archinstall/lib/utils/util.py
@@ -1,7 +1,7 @@
from pathlib import Path
from typing import Any, TYPE_CHECKING, Optional
-from ..output import log
+from ..output import info
if TYPE_CHECKING:
_: Any
@@ -16,7 +16,7 @@ def prompt_dir(text: str, header: Optional[str] = None) -> Path:
dest_path = Path(path)
if dest_path.exists() and dest_path.is_dir():
return dest_path
- log(_('Not a valid directory: {}').format(dest_path), fg='red')
+ info(_('Not a valid directory: {}').format(dest_path))
def is_subpath(first: Path, second: Path):