summaryrefslogtreecommitdiff
path: root/xnt/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'xnt/__init__.py')
-rw-r--r--xnt/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/xnt/__init__.py b/xnt/__init__.py
index 14d4c4d..37abe45 100644
--- a/xnt/__init__.py
+++ b/xnt/__init__.py
@@ -1,7 +1,9 @@
#!/usr/bin/env python
+__version__ = "Xnt 0.2.2"
def target(fn):
def wrap():
print(fn.__name__ + ":")
return fn()
+ wrap.decorator = "target"
return wrap