# HG changeset patch # User Augie Fackler # Date 1240622714 18000 # Node ID 68aea59116b65b122f8c70bf0cc8abcbe5db0f5a # Parent a119ab6135f31619df56ad67df8c09b16200c919 util: kill unused function diff --git a/util.py b/util.py --- a/util.py +++ b/util.py @@ -29,15 +29,6 @@ def normalize_url(svnurl): return svnurl.rstrip('/') -def wipe_all_files(hg_wc_path): - files = [f for f in os.listdir(hg_wc_path) if f != '.hg'] - for f in files: - f = os.path.join(hg_wc_path, f) - if os.path.isdir(f): - shutil.rmtree(f) - else: - os.remove(f) - REVMAP_FILE_VERSION = 1 def parse_revmap(revmap_filename): revmap = {}