~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Max Kanat-Alexander
  • Date: 2010-11-12 00:09:49 UTC
  • Revision ID: mkanat@bugzilla.org-20101112000949-qhuz3vydzcvih8px
loggerhead.trace was missing an import of logging.handlers, which caused
start-loggerhead to die if a log.roll config setting was set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    license = "GNU GPL v2 or later",
31
31
    maintainer = "Michael Hudson",
32
32
    maintainer_email = "michael.hudson@canonical.com",
33
 
    scripts = ["start-loggerhead",
34
 
               "stop-loggerhead",
35
 
               "serve-branches",
36
 
               "loggerhead.wsgi"],
 
33
    scripts = ["start-loggerhead", "stop-loggerhead", "serve-branches"],
37
34
    packages = ["loggerhead",
38
35
                "loggerhead/apps",
39
36
                "loggerhead/controllers",
70
67
        ('share/man/man1', ['start-loggerhead.1',
71
68
                            'stop-loggerhead.1',
72
69
                            'serve-branches.1']),
73
 
        ('share/doc/loggerhead', ['loggerhead.conf.example',
74
 
                                  'README.mod_wsgi',
75
 
                                  'apache-loggerhead.conf',
76
 
                                  'bazaar.conf']),
 
70
        ('share/doc/loggerhead', ['loggerhead.conf.example']),
77
71
        ],
78
72
    )