Tell the user when a background update completes, not when it starts
[zeroinstall/solver.git] / zeroinstall / injector / policy.py
blob52e290615b2835589c86397076b9c43cc6de814d
1 """
2 @deprecated: see L{driver} instead.
3 """
5 # Copyright (C) 2009, Thomas Leonard
6 # See the README file for details, or visit http://0install.net.
8 from zeroinstall.injector.config import load_config
10 _config = None
11 def get_deprecated_singleton_config():
12 global _config
13 if _config is None:
14 _config = load_config()
15 return _config