# HG changeset patch # User Travis Burtrum # Date 1405365143 -7200 # Node ID e2ac4623c1c4eff210c123120622472cbfcff796 # Parent 074f9dd327364bc4781b042063bc1dfc8dca541b hooks: RC_SCM_DATA was renamed to KALLITHEA_EXTRAS ... but set it anyway to be backwards compatible diff -r 074f9dd32736 -r e2ac4623c1c4 kallithea/lib/utils2.py --- a/kallithea/lib/utils2.py Mon Jul 14 21:12:23 2014 +0200 +++ b/kallithea/lib/utils2.py Mon Jul 14 21:12:23 2014 +0200 @@ -634,7 +634,8 @@ def _set_extras(extras): - os.environ['KALLITHEA_EXTRAS'] = json.dumps(extras) + # RC_SCM_DATA can probably be removed in the future, but for compatibilty now... + os.environ['KALLITHEA_EXTRAS'] = os.environ['RC_SCM_DATA'] = json.dumps(extras) def unique_id(hexlen=32):