Skip to content

Commit

Permalink
Removed unneeded print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkwouter committed Dec 27, 2019
1 parent ce930eb commit 78a3917
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions minigalaxy/window/gametile.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ def __install_game(self) -> None:
os.makedirs(library_dir)

# Copy the game files into the correct directory
dir_to_move = os.path.join(temp_dir, "data/noarch")
print(dir_to_move)
shutil.move(dir_to_move, self.__get_install_dir())
shutil.move(os.path.join(temp_dir, "data/noarch"), self.__get_install_dir())
shutil.rmtree(temp_dir, ignore_errors=True)
os.remove(self.download_path)

Expand Down

0 comments on commit 78a3917

Please sign in to comment.