1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Remove package's decorator as python-decorator package contains
the same files.
Forwarded: not-needed
Author: Tomasz Rybak <bogomips@post.pl>
Last-Update: 2013-08-27
Index: pytools-2013.5.6/pytools/__init__.py
===================================================================
--- pytools-2013.5.6.orig/pytools/__init__.py 2013-07-17 22:43:09.000000000 +0200
+++ pytools-2013.5.6/pytools/__init__.py 2013-08-27 20:53:24.183002956 +0200
@@ -26,7 +26,7 @@
import operator
import sys
-from pytools.decorator import decorator
+from decorator import decorator
try:
decorator_module = __import__("decorator", level=0)
|