summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2012-01-24 10:54:30 +0100
committerhut <hut@lavabit.com>2012-01-24 10:54:30 +0100
commit9e146c8272e25b98d0f196bc34ac1725f894863a (patch)
treed25034b4fe12de7463611340e47234fcabef530e
parent5db94646ffdd492103a40a2e33758b1827032661 (diff)
downloadranger-9e146c8272e25b98d0f196bc34ac1725f894863a.tar.gz
defaults/commands: fixed TERMCMD in :terminal
-rw-r--r--ranger/defaults/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py
index ba9030c5..c9729999 100644
--- a/ranger/defaults/commands.py
+++ b/ranger/defaults/commands.py
@@ -464,7 +464,7 @@ class terminal(Command):
 			command = 'x-terminal-emulator'
 		if command not in get_executables():
 			command = 'xterm'
-		self.fm.run('x-terminal-emulator', flags='d')
+		self.fm.run(command, flags='d')
 
 
 class delete(Command):