From 690747dbf2d4f651c0c2bbfe390fa1e428229b5a Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Wed, 13 Feb 2013 00:08:23 +0100 Subject: [PATCH] Not useful anymore --- tools/storage_convert.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 tools/storage_convert.py diff --git a/tools/storage_convert.py b/tools/storage_convert.py deleted file mode 100755 index a140b0c1..00000000 --- a/tools/storage_convert.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python - -from __future__ import with_statement - -import sys - -for name in sys.argv[1:]: - with open(name, 'r') as f: - lines = f.readlines() - - with open(name, 'w') as f: - f.write('backends:\n') - for line in lines: - f.write(' %s' % line)