Skip to content

Commit

Permalink
renamed package to be more in line with others
Browse files Browse the repository at this point in the history
  • Loading branch information
TanninOne committed Aug 8, 2020
1 parent 58b6e84 commit 6464857
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion make.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
setlocal

set PACKAGE_NAME=allmygames
set PACKAGE_NAME=AllMyGames
set INSTALL_DIR=%APPDATA%\Keypirinha\InstalledPackages

if "%1"=="" goto help
Expand Down
2 changes: 1 addition & 1 deletion src/lib/origin/origin.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, context):
self.__games = self.__read_manifest(self.__exe_path)

def run(self, kpu, appid, call_args):
target = Origin.LAUNCHER_CMD.format(name=appid);
target = Origin.LAUNCHER_CMD.format(name=appid)
kpu.shell_execute(target)

@property
Expand Down
2 changes: 1 addition & 1 deletion src/lib/windowsstore/windowsstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def __read_repository(self):
visuals = app.getElementsByTagName("uap:VisualElements")[0]
logo_path = visuals.getAttribute("Square150x150Logo")
except Exception as e:
self.__context.info("failed to get logo", e)
self.__context.info("failed to get logo", exeid, e)

id_parts = sub_key_name.split("_")
games.append({
Expand Down

0 comments on commit 6464857

Please sign in to comment.