1
0
mirror of https://github.com/lutris/lutris synced 2024-07-05 16:38:42 +00:00

Rename command module to monitored_command

This commit is contained in:
Mathieu Comandon 2024-03-21 22:28:39 -07:00
parent d1cb902954
commit 8c14d52457
9 changed files with 8 additions and 8 deletions

View File

@ -14,7 +14,7 @@ from typing import cast
from gi.repository import Gio, GLib, GObject, Gtk
from lutris import settings
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.config import LutrisConfig
from lutris.database import categories as categories_db
from lutris.database import games as games_db

View File

@ -8,7 +8,7 @@ from typing import List
from gi.repository import Gio, Gtk
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.config import duplicate_game_config
from lutris.database.games import add_game, get_game_by_field
from lutris.game import Game

View File

@ -35,7 +35,7 @@ from gi.repository import Gio, GLib, GObject, Gtk
from lutris import settings
from lutris.api import get_runners, parse_installer_url
from lutris.command import exec_command
from lutris.monitored_command import exec_command
from lutris.database import games as games_db
from lutris.database.services import ServiceGameCollection
from lutris.exception_backstops import init_exception_backstops

View File

@ -12,7 +12,7 @@ from gi.repository import GLib
from lutris import runtime
from lutris.cache import get_cache_path, has_custom_cache_path
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.exceptions import MissingExecutableError, UnspecifiedVersionError
from lutris.installer.errors import ScriptingError
from lutris.installer.installer import LutrisInstaller

View File

@ -5,7 +5,7 @@ import shlex
import time
from lutris import runtime, settings
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.runners import import_runner
from lutris.util import linux, system
from lutris.util.log import logger

View File

@ -4,7 +4,7 @@ from gettext import gettext as _
from pathlib import Path
from typing import Callable
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.exceptions import GameConfigError, MissingExecutableError
from lutris.runners import NonInstallableRunnerError
from lutris.runners.runner import Runner

View File

@ -6,7 +6,7 @@ from typing import Callable, Dict, Optional
from lutris import runtime, settings
from lutris.api import format_runner_version, get_default_runner_version_info
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.config import LutrisConfig
from lutris.database.games import get_game_by_field
from lutris.exceptions import MisconfigurationError, MissingExecutableError, UnavailableLibrariesError

View File

@ -2,7 +2,7 @@
import os
from gettext import gettext as _
from lutris.command import MonitoredCommand
from lutris.monitored_command import MonitoredCommand
from lutris.exceptions import MissingGameExecutableError, UnavailableRunnerError
from lutris.runners import NonInstallableRunnerError
from lutris.runners.runner import Runner