#!/usr/bin/env python3
"""Match command line calls to appropriate scripts."""
-# included libs
+# standard libs
from sys import argv, exit as sys_exit
-# ourselves
+# non-standard libs
try:
from ytplom.db import DbFile
from ytplom.primitives import HandledException
from ytplom.http import serve
from ytplom.sync import sync
except ModuleNotFoundError as e:
- print('FAIL: Missing module(s), please run with "install_deps" argument.')
- print(e)
+ print(f"Missing dependency: {e}. Please run with 'install_deps' argument.")
sys_exit(1)