Skip to content

Commit 8f34327

Browse files
committed
release 0.1.8 : remove trailing slash in vip url
1 parent 809c994 commit 8f34327

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/vip_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
# Informations
11-
__version__ = "0.1.7"
11+
__version__ = "0.1.8"
1212
__license__ = "CECILL-B"
1313

1414
from vip_client.classes import VipSession

src/vip_client/classes/VipClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class VipClient():
2323
# Default verbose state
2424
_VERBOSE = True
2525
# Vip portal
26-
_VIP_PORTAL = "https://vip.creatis.insa-lyon.fr/"
26+
_VIP_PORTAL = "https://vip.creatis.insa-lyon.fr"
2727
# Mail address for support
2828
_VIP_SUPPORT = "vip-support@creatis.insa-lyon.fr"
2929
# Regular expression for invalid characters

src/vip_client/classes/VipLauncher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class VipLauncher():
4949
# Default file name to save session properties
5050
_SAVE_FILE = "session_data.json"
5151
# Vip portal
52-
_VIP_PORTAL = "https://vip.creatis.insa-lyon.fr/"
52+
_VIP_PORTAL = "https://vip.creatis.insa-lyon.fr"
5353
# Mail address for support
5454
_VIP_SUPPORT = "vip-support@creatis.insa-lyon.fr"
5555
# Regular expression for invalid characters (i.e. all except valid characters)

0 commit comments

Comments
 (0)