From 6d6c2a96fd6fb36ed8a84e87f1b1e3479bb2b64b Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Tue, 17 Jan 2017 12:28:00 -0600 Subject: [PATCH] Move zip into its own dir --- tools/export/{zip.py => zip/__init__.py} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename tools/export/{zip.py => zip/__init__.py} (95%) diff --git a/tools/export/zip.py b/tools/export/zip/__init__.py similarity index 95% rename from tools/export/zip.py rename to tools/export/zip/__init__.py index 3961eb0622..f2d9a19c0a 100644 --- a/tools/export/zip.py +++ b/tools/export/zip/__init__.py @@ -14,9 +14,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ -from exporters import Exporter from os.path import basename +from tools.export.exporters import Exporter + class ZIP(Exporter): NAME = 'ZIP'