From 803ee80427f5e6a9cf0d6c510b43f1abe9ffe751 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Mon, 8 Feb 2016 20:37:43 +0000 Subject: [PATCH] Removed csv tool which was made redundant by the contents tool. --- tools.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools.py b/tools.py index 6284a9c..d4906af 100644 --- a/tools.py +++ b/tools.py @@ -501,11 +501,6 @@ def tar_bz2(path): tar_bz2.dependencies = {"tar"} -def csv(path): - return _run_command(["head", "--lines=20", path], Status.normal) -csv.dependencies = {"coreutils"} - - def nm(path): return _run_command(["nm", "--demangle", path], Status.normal) nm.dependencies = {"binutils"} @@ -603,7 +598,6 @@ def tools_for_extension(): "tar.gz": [tar_gz], "tgz": [tar_gz], "tar.bz2": [tar_bz2], - "csv": [csv], "a": [nm], "so": [nm], "pdf": [pdf2txt],