Skip to content

Commit 3daa57e

Browse files
committed
bump ui
1 parent 6ec6966 commit 3daa57e

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ script:
6161
before_deploy:
6262
- $PRUN $PBIN install pyinstaller pywin32
6363
- |
64-
curl -sL "https://api.github.com/repos/3ll3d00d/ezmote/releases/assets/15735993" -o ezmote.tar.gz -H 'Accept: application/octet-stream'
64+
curl -sL "https://api.github.com/repos/3ll3d00d/ezmote/releases/assets/25529503" -o ezmote.tar.gz -H 'Accept: application/octet-stream'
6565
- mkdir ezmote
6666
- tar xvfz ezmote.tar.gz -C ezmote
6767
- rm ezmote.tar.gz

src/pjcontroller.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ def __execute(self, cmd):
8080
else:
8181
logger.warning(f"Unsupported value type for {cmd} - {cmd_arg_enum.__name__}")
8282
except (AttributeError, KeyError):
83-
logger.warning(f"Ignoring unknown command {cmd}")
83+
logger.exception(f"Ignoring unknown command {cmd}")
8484
except:
8585
logger.exception(f"Unexpected exception while processing {cmd}")
86-
logger.error(f"Ignoring unknown command {cmd}")
86+
else:
87+
logger.error(f"Ignoring unknown command {cmd}")

0 commit comments

Comments
 (0)