From e199d2166479a80ce92b0dac15760a4da00bdc47 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 29 Aug 2016 22:08:42 +0530 Subject: [PATCH] [minor] [patch] import os for patches --- frappe/modules/patch_handler.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/modules/patch_handler.py b/frappe/modules/patch_handler.py index a499133163..3bade9c3f5 100644 --- a/frappe/modules/patch_handler.py +++ b/frappe/modules/patch_handler.py @@ -14,6 +14,9 @@ from __future__ import unicode_literals """ import frappe, frappe.permissions +# for patches +import os + class PatchError(Exception): pass def run_all():