Add $LANG to the log for debugging
This commit is contained in:
@@ -85,15 +85,11 @@ def main():
|
|||||||
config.keymap.set_bindings(bindings)
|
config.keymap.set_bindings(bindings)
|
||||||
|
|
||||||
if config['copy_config']:
|
if config['copy_config']:
|
||||||
copy_default_config()
|
return copy_default_config()
|
||||||
return
|
|
||||||
if config['copy_mailcap']:
|
if config['copy_mailcap']:
|
||||||
copy_default_mailcap()
|
return copy_default_mailcap()
|
||||||
return
|
|
||||||
|
|
||||||
if config['list_themes']:
|
if config['list_themes']:
|
||||||
Theme.print_themes()
|
return Theme.print_themes()
|
||||||
return
|
|
||||||
|
|
||||||
# Load the browsing history from previous sessions
|
# Load the browsing history from previous sessions
|
||||||
config.load_history()
|
config.load_history()
|
||||||
@@ -121,6 +117,7 @@ def main():
|
|||||||
env = [
|
env = [
|
||||||
('$DISPLAY', os.getenv('DISPLAY')),
|
('$DISPLAY', os.getenv('DISPLAY')),
|
||||||
('$TERM', os.getenv('TERM')),
|
('$TERM', os.getenv('TERM')),
|
||||||
|
('$LANG', os.getenv('LANG')),
|
||||||
('$XDG_CONFIG_HOME', os.getenv('XDG_CONFIG_HOME')),
|
('$XDG_CONFIG_HOME', os.getenv('XDG_CONFIG_HOME')),
|
||||||
('$XDG_DATA_HOME', os.getenv('$XDG_DATA_HOME')),
|
('$XDG_DATA_HOME', os.getenv('$XDG_DATA_HOME')),
|
||||||
('$RTV_EDITOR', os.getenv('RTV_EDITOR')),
|
('$RTV_EDITOR', os.getenv('RTV_EDITOR')),
|
||||||
|
|||||||
Reference in New Issue
Block a user