Browse Source

Set bzrlib as optional dependency.

Code should work without bzrlib and skip logging the revnos if lib is absent.

Git dependency kept since oca/server-tools itself is git and we would like to
know sha of sentry_logger
pull/44/head
Sandy Carter 10 years ago
parent
commit
f8a9a43865
  1. 12
      sentry_logger/__openerp__.py

12
sentry_logger/__openerp__.py

@ -33,6 +33,12 @@ Integration with Sentry Error reporting engine.
Insert sentry DSN to ~/.openerp_serverrc with value: Insert sentry DSN to ~/.openerp_serverrc with value:
sentry_dsn = sync+<Your Sentry DSN> sentry_dsn = sync+<Your Sentry DSN>
Optional Dependencies
---------------------
* bzrlib (for revno reporting on module repositories from LP)
Contributors Contributors
------------ ------------
* Sandy Carter (sandy.carter@savoirfairelinux.com) * Sandy Carter (sandy.carter@savoirfairelinux.com)
@ -49,7 +55,11 @@ Contributors
# any module necessary for this one to work correctly # any module necessary for this one to work correctly
'depends': ['web'], 'depends': ['web'],
'external_dependencies': { 'external_dependencies': {
'python': ['raven', 'raven_sanitize_openerp', 'bzrlib', 'git'],
'python': [
'raven',
'raven_sanitize_openerp',
'git',
],
}, },
'data': [ 'data': [
], ],

Loading…
Cancel
Save