diff options
author | hut <hut@lavabit.com> | 2010-03-12 18:13:32 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-12 18:13:32 +0100 |
commit | 766a5b6adb6fe568b2e2dbaa0b7c1bc94e535637 (patch) | |
tree | 356c4f6295058e71903840c6fda395e9ee5c61bc /ranger/fsobject/directory.py | |
parent | 69394f44516db77b126f997ca704bd77a3d76852 (diff) | |
download | ranger-766a5b6adb6fe568b2e2dbaa0b7c1bc94e535637.tar.gz |
Renamed env.pwd to env.cwd ("Current Working Directory")
I initially used "pwd" since the command "pwd" prints the current directory, but in this case, nothing is printed =P so the "p" makes no sense. "cwd" is a common abbreviation for current working directory, so I chose that instead
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r-- | ranger/fsobject/directory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py index 5bbbe3e4..8bb8a78a 100644 --- a/ranger/fsobject/directory.py +++ b/ranger/fsobject/directory.py @@ -341,7 +341,7 @@ class Directory(FileSystemObject, Accumulator, SettingsAware): Accumulator.correct_pointer(self) try: - if self == self.fm.env.pwd: + if self == self.fm.env.cwd: self.fm.env.cf = self.pointed_obj except: pass |