From 150883d275005ec84fa03143306c59603a492d94 Mon Sep 17 00:00:00 2001 From: allfro Date: Sat, 8 Dec 2012 19:41:00 -0500 Subject: [PATCH] Added auto install and uninstall of entities and machines during install-package and uninstall-package operations. --- src/canari/framework.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/canari/framework.py b/src/canari/framework.py index 9fa20e0..25e10d3 100644 --- a/src/canari/framework.py +++ b/src/canari/framework.py @@ -21,6 +21,11 @@ def superuser(f): return f +def deprecated(f): + f.deprecated = True + return f + + class configure(object): def __init__(self, **kwargs): -- 2.45.1