about summary refs log tree commit diff stats
path: root/ranger/fsobject/directory.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-08-28 08:52:02 +0200
committerhut <hut@lavabit.com>2010-08-28 08:52:02 +0200
commitbd33933dd1cb708a5e708b361c1842190a1c9e4b (patch)
tree5f41d0374103a7d3244d71155f2caa6798b10965 /ranger/fsobject/directory.py
parenta2853ab67f2e471d9a34b4c528db6ee2024ef874 (diff)
downloadranger-bd33933dd1cb708a5e708b361c1842190a1c9e4b.tar.gz
Fixed new history implementation
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r--ranger/fsobject/directory.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py
index f1bcd9a3..05c07009 100644
--- a/ranger/fsobject/directory.py
+++ b/ranger/fsobject/directory.py
@@ -420,10 +420,10 @@ class Directory(FileSystemObject, Accumulator, SettingsAware):
 			return True
 		return self.last_used + seconds < time()
 
-	def go(self):
+	def go(self, history=True):
 		"""enter the directory if the filemanager is running"""
 		if self.fm:
-			return self.fm.enter_dir(self.path)
+			return self.fm.enter_dir(self.path, history=history)
 		return False
 
 	def empty(self):