ソースを参照

Merge branch 'brosner/fixes'

Ask Solem 16 年 前
コミット
0aeb2d55f2
2 ファイル変更2 行追加3 行削除
  1. 1 1
      celery/worker.py
  2. 1 2
      setup.py

+ 1 - 1
celery/worker.py

@@ -29,7 +29,7 @@ The contents of the full traceback was:
 
 %%(traceback)s
 
-%%(EMAIL_SIGNATURE_SEP)s
+%(EMAIL_SIGNATURE_SEP)s
 Just thought I'd let you know!
 celeryd at %%(hostname)s.
 """ % {"EMAIL_SIGNATURE_SEP": EMAIL_SIGNATURE_SEP}

+ 1 - 2
setup.py

@@ -40,7 +40,7 @@ class RunTests(Command):
         os.chdir(this_dir)
 
 
-install_requires = ["carrot", "django"]
+install_requires = ["carrot"]
 py_version_info = sys.version_info
 py_major_version = py_version_info[0]
 py_minor_version = py_version_info[1]
@@ -65,7 +65,6 @@ setup(
     install_requires=[
         'carrot>=0.4.1',
         'python-daemon',
-        'django',
     ],
     cmdclass = {"test": RunTests},
     classifiers=[