Skip to content

Commit 6eebe56

Browse files
author
Benoit Crickboom
committed
release
1 parent 167ccde commit 6eebe56

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

orthanc_api_client/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def __init__(self, orthanc_root_url, user, pwd):
6565
self._headers = None
6666

6767
def get_headers(self):
68-
if self._headers is None:
69-
self._headers = self._fetch_headers()
68+
# Shouldn't we check that the token is expired?
69+
self._headers = self._fetch_headers()
7070

7171
return self._headers
7272

release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
V 0.25.1
1+
V 0.25.2
22
========
33

44
- Added components for the education plugin.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# For a discussion on single-sourcing the version across setup.py and the
2929
# project code, see
3030
# https://packaging.python.org/guides/single-sourcing-package-version/
31-
version='0.25.1', # Required
31+
version='0.25.2', # Required
3232

3333
# This is a one-line description or tagline of what your project does. This
3434
# corresponds to the "Summary" metadata field:

0 commit comments

Comments
 (0)