diff options
Diffstat (limited to 'notmuch-ssh-server')
-rw-r--r-- | notmuch-ssh-server | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-ssh-server b/notmuch-ssh-server index 40511fc..3c5f678 100644 --- a/notmuch-ssh-server +++ b/notmuch-ssh-server | |||
@@ -34,7 +34,7 @@ config_section = original_command[0] | |||
34 | logging.debug("Config section: %s", config_section) | 34 | logging.debug("Config section: %s", config_section) |
35 | 35 | ||
36 | config_environment = config[config_section] if config.has_section(config_section) else config[config.default_section] | 36 | config_environment = config[config_section] if config.has_section(config_section) else config[config.default_section] |
37 | logging.info("Config environment: %s", config_environment) | 37 | logging.info("Config environment: %s", repr(config_environment)) |
38 | 38 | ||
39 | logging.info("notmuch %s", original_command[1:]) | 39 | logging.info("notmuch %s", original_command[1:]) |
40 | os.execvpe('@notmuch@/bin/notmuch', ['notmuch'] + original_command[1:], {**os.environ, **config_environment}) | 40 | os.execvpe('@notmuch@/bin/notmuch', ['notmuch'] + original_command[1:], {**os.environ, **config_environment}) |