From 5523e4cdbb786c396c103cfab369fc2ef8d6c52a Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 27 Nov 2014 21:39:33 +0100 Subject: Removed private API find_template. It wasn't documented and it wasn't used anywhere, except in a few tests that don't test it specifically and can be rewritten with get_template. --- django/template/loader.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'django') diff --git a/django/template/loader.py b/django/template/loader.py index b76fbdcfb9..f27494dfb1 100644 --- a/django/template/loader.py +++ b/django/template/loader.py @@ -17,10 +17,6 @@ class LoaderOrigin(Origin): return self.loader(self.loadname, self.dirs)[0] -def find_template(*args, **kwargs): - return Engine.get_default().find_template(*args, **kwargs) - - def get_template(template_name, dirs=_dirs_undefined, using=None): """ Loads and returns a template for the given name. -- cgit v1.3