summaryrefslogtreecommitdiff
path: root/notmuch-ssh-server
diff options
context:
space:
mode:
Diffstat (limited to 'notmuch-ssh-server')
-rw-r--r--notmuch-ssh-server2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-ssh-server b/notmuch-ssh-server
index 6a7a2ed..493bf02 100644
--- a/notmuch-ssh-server
+++ b/notmuch-ssh-server
@@ -25,6 +25,6 @@ if len(original_command) < 1:
25 25
26config_section = original_command[0] 26config_section = original_command[0]
27 27
28command_environment = config.items(config_section) if config.has_section(config_section) else config.items(config.default_section) 28command_environment = config[config_section] if config.has_section(config_section) else config[config.default_section]
29 29
30os.execvpe('@notmuch@/bin/notmuch', original_command[1:], command_environment) 30os.execvpe('@notmuch@/bin/notmuch', original_command[1:], command_environment)