1
0
Fork 0
mirror of synced 2024-06-20 19:40:25 +12:00

Pylint fix

This commit is contained in:
Dummerle 2021-11-17 22:42:14 +01:00
parent 3acc13e9b6
commit c31c663c8a
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1
3 changed files with 3 additions and 2 deletions

View file

@ -97,7 +97,7 @@ jobs:
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Rare.AppImage
file: Rare.AppImage.zsync
asset_name: Rare-${{github.ref}}.AppImage.zsync
tag: ${{ github.ref }}
overwrite: true

1
.gitignore vendored
View file

@ -12,3 +12,4 @@ __pycache__
/Rare.egg-info/
/venv
/venv310/
/test.py

View file

@ -215,7 +215,7 @@ class CloudSaveUtils(QObject):
self.core.lgd.set_installed_game(app_name, igame)
logger.info(f"Set save path of {igame.title} to {savepath}")
else:
logger.warning(None, "Warning", self.tr("No savepath set. Skip syncing with cloud"))
QMessageBox.warning(None, "Warning", self.tr("No savepath set. Skip syncing with cloud"))
return False
res, (dt_local, dt_remote) = self.core.check_savegame_state(igame.save_path, self.latest_saves.get(app_name))