Package: game-data-package Version: 43~ Severity: important Here's a regression in the 'steam' mode.
~/game-data-packager $ ./run steam --no-download INFO:game-data-packager.steam:Visit our community page: https://steamcommunity.com/groups/debian_gdp#curation INFO:root:Searching for locally installed Steam games... ... File "/home/pi/game-data-packager/game_data_packager/steam.py", line 113, in run_steam_meta_mode for path in gamedata.iter_steam_paths((package,)): AttributeError: 'GameData' object has no attribute 'iter_steam_paths' import'ing PackagingTask and doing instead: - for path in gamedata.iter_steam_paths((package,)): + for path in PackagingTask.iter_steam_paths(gamedata,(package,)): Will lead to an other failure: File "/home/tchet/git/game-data-packager/game_data_packager/build.py", line 2237, in iter_steam_paths suffixes.add(self.game.steam.get('path')) AttributeError: 'ScummvmGameData' object has no attribute 'game' Alexandre