summaryrefslogtreecommitdiffstats
path: root/gamechestcli/gamechest/cliactions/remove.py
diff options
context:
space:
mode:
Diffstat (limited to 'gamechestcli/gamechest/cliactions/remove.py')
-rw-r--r--gamechestcli/gamechest/cliactions/remove.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/gamechestcli/gamechest/cliactions/remove.py b/gamechestcli/gamechest/cliactions/remove.py
index d5452d5..6573aff 100644
--- a/gamechestcli/gamechest/cliactions/remove.py
+++ b/gamechestcli/gamechest/cliactions/remove.py
@@ -5,15 +5,16 @@ import selectors
from rich import print
from rich.progress import Progress as RichProgress
-from .. import gamedb, paths, processor
+from .. import gamedb, processor
+from ..gameconfig import config
from ..runners.remove import Remove
from ..statusdb import StatusDB
def remove_game(status_db, game_info):
- remote_basedir = paths.get_remote_basedir()
+ remote_basedir = config.get_remote_basedir()
path = (
- paths.get_games_install_basedir()
+ config.get_games_install_basedir()
/ game_info['id']
)
title = 'Removing game...'