Commit 73e0356b authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Context component:

- corrected generation of default uuid for context entities
parent 82fcc134
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ def context_get_uuid(
    if len(context_name) > 0:
        return get_uuid_from_string(context_name)
    if allow_default:
        get_uuid_from_string(DEFAULT_CONTEXT_NAME)
        return get_uuid_from_string(DEFAULT_CONTEXT_NAME)
    if allow_random:
        return get_uuid_random()