X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Futil%2Fversion.py.in;h=97ae6c40a457759ec31737cd89207d580624ee94;hb=a78041b7906e53b2d7c5c03bae7256e7035a1e3e;hp=c1df450b303940320f76c36011a80d5f9a29aa52;hpb=1fba18d5fad3c55bf43335afd43ad4a2e1381419;p=sfa.git diff --git a/sfa/util/version.py.in b/sfa/util/version.py.in index c1df450b..97ae6c40 100644 --- a/sfa/util/version.py.in +++ b/sfa/util/version.py.in @@ -3,11 +3,11 @@ version_tag="@VERSIONTAG@" scm_url="@SCMURL@" import socket -def version_core (more={}): +def version_core (more=None): + if more is None: more={} core = { 'code_tag' : version_tag, 'code_url' : scm_url, 'hostname' : socket.gethostname(), - 'options_support' : True, } core.update(more) return core