Skip to content

Commit d7a683b

Browse files
authored
Merge pull request #452 from grycap/devel
Devel
2 parents 57eceed + 476df3f commit d7a683b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,12 +464,12 @@ def showinfrastructures():
464464
raise Exception(response.text)
465465
radl_json = response.json()["radl"]
466466
except Exception as ex:
467-
app.logger.exception("Error getting vm info: %s" % ex, "error")
467+
app.logger.exception("Error getting vm info: %s" % ex)
468468
radl_json = []
469469
try:
470470
creds = cred.get_creds(get_cred_id())
471471
except Exception as ex:
472-
app.logger.exception("Error getting user credentials: %s" % ex, "error")
472+
app.logger.exception("Error getting user credentials: %s" % ex)
473473
creds = []
474474
site_info = utils.get_site_info_from_radl(radl_json, creds)
475475
if site_info:

app/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
class Settings:
2525
def __init__(self, config):
2626
"""Creator function."""
27-
self.version = "2.5.2"
27+
self.version = "2.5.3"
2828
self.toscaDir = config.get('TOSCA_TEMPLATES_DIR', '') + "/"
2929
self.toscaParamsDir = config.get('TOSCA_PARAMETERS_DIR', '') + "/"
3030
self.imUrl = config['IM_URL']

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"@type": "SoftwareSourceCode",
77
"identifier": "im-dashboard",
88
"name": "Infrastructure Manager Dashboard",
9-
"version": "2.5.1",
9+
"version": "2.5.3",
1010
"description": "Infrastructure Manager - Simple Graphical UI",
1111
"license": "GNU General Public License v3.0",
1212
"author": [

0 commit comments

Comments
 (0)