diff options
author | hut <hut@lavabit.com> | 2010-05-15 00:39:55 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-05-15 00:39:55 +0200 |
commit | a818625ab97a366e2dd2f07b10e3d570ef1c252f (patch) | |
tree | dcfd7f68f0e00b7019f1aef0d425106c82d55e58 | |
parent | db426717730e66a569b4c29659329aeb8f0cf263 (diff) | |
download | ranger-a818625ab97a366e2dd2f07b10e3d570ef1c252f.tar.gz |
fsobject: extended list of container extensions
-rw-r--r-- | ranger/fsobject/fsobject.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ranger/fsobject/fsobject.py b/ranger/fsobject/fsobject.py index f0adab67..afef48e4 100644 --- a/ranger/fsobject/fsobject.py +++ b/ranger/fsobject/fsobject.py @@ -13,7 +13,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -CONTAINER_EXTENSIONS = 'rar zip tar gz bz bz2 tgz 7z iso cab'.split() +CONTAINER_EXTENSIONS = ('7z', 'ace', 'ar', 'arc', 'bz', 'bz2', 'cab', 'cpio', + 'cpt', 'dgc', 'dmg', 'gz', 'iso', 'jar', 'msi', 'pkg', 'rar', 'shar', + 'tar', 'tbz', 'tgz', 'xar', 'xz', 'zip') from os import access, listdir, lstat, readlink, stat from time import time |