Browse Source

Removes leftover print statement

Ask Solem 12 years ago
parent
commit
785a28fa9b
1 changed files with 0 additions and 2 deletions
  1. 0 2
      celery/app/base.py

+ 0 - 2
celery/app/base.py

@@ -193,8 +193,6 @@ class Celery(object):
     def _task_from_fun(self, fun, **options):
         base = options.pop('base', None) or self.Task
 
-        print('%r base is: %r' % (fun, base, ))
-
         T = type(fun.__name__, (base, ), dict({
             'app': self,
             'accept_magic_kwargs': False,