Skip to content

Commit

Permalink
hotfix-exception-log-message (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
z00sts authored Aug 10, 2017
1 parent b1aa082 commit 8c556c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'config/*.ini'
],
},
version='0.1.0',
version='0.1.1',
entry_points={
'console_scripts': [
'stf-connect = stf_utils.stf_connect.stf_connect:run',
Expand Down
2 changes: 1 addition & 1 deletion stf_utils/stf_connect/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _add_device_to_file(self, device):
})
mapping_file.write("{0}\n".format(json_mapping))
except OSError:
log.exception("Can't open file {0} for {}".format(self.devices_file_path, device))
log.exception("Can't open file {} for {}".format(self.devices_file_path, device))

def _delete_device_from_group(self, device_for_delete, device_group):
lists = ["connected_devices", "added_devices"]
Expand Down

0 comments on commit 8c556c0

Please sign in to comment.