Skip to content

Commit

Permalink
- Fix get_device_id to set new_device to be False by default (#532
Browse files Browse the repository at this point in the history
)

- Fix `get_device_id` to set `new_device` to be `False` by default (#532)
- including ksm dependency
- pumping version to 16.2.3
  • Loading branch information
maksimu committed Oct 5, 2021
1 parent 20fab50 commit 0a9a68c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keepercommander/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
# Contact: ops@keepersecurity.com
#

__version__ = '16.2.2'
__version__ = '16.2.3'
2 changes: 1 addition & 1 deletion keepercommander/loginv3.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ def rest_request(params: KeeperParams, api_endpoint: str, rq):
return rs

@staticmethod
def get_device_id(params, new_device): # type: (KeeperParams, bool) -> bytes
def get_device_id(params, new_device=False): # type: (KeeperParams, bool) -> bytes
if new_device:
logging.info('Resetting device token')
params.device_token = None
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ asciitree
pytest
protobuf
pyperclip
libkeepass
libkeepass
keeper-secrets-manager-core

0 comments on commit 0a9a68c

Please sign in to comment.