summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-05-14 21:58:25 +0200
committerhut <hut@lavabit.com>2010-05-14 21:58:25 +0200
commit6c34428d48141e62bdd7f4dcc0aa6cdf14dc65a2 (patch)
tree794ad0bf41aeafc081b9e327353ef2d11d81e156
parent3cec441a10f4d4358fba414005163ed1a6c539f2 (diff)
downloadranger-6c34428d48141e62bdd7f4dcc0aa6cdf14dc65a2.tar.gz
fsobject: added comment
-rw-r--r--ranger/fsobject/fsobject.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/fsobject/fsobject.py b/ranger/fsobject/fsobject.py
index e9c44653..9d942c65 100644
--- a/ranger/fsobject/fsobject.py
+++ b/ranger/fsobject/fsobject.py
@@ -260,7 +260,7 @@ class FileSystemObject(MimeTypeAware, FileManagerAware):
 
 		mode = self.stat.st_mode
 		test = 0o0400
-		while test:
+		while test:  # will run 3 times because 0o400 >> 9 = 0
 			for what in "rwx":
 				if mode & test:
 					perms.append(what)