From 131c403be4c8d18ad353319497b55901c6e719e9 Mon Sep 17 00:00:00 2001 From: xgecko Date: Fri, 20 Jul 2012 16:11:17 -0700 Subject: Condensed nested if statements --- pystache/locator.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pystache') diff --git a/pystache/locator.py b/pystache/locator.py index 6ffc951..04260bd 100644 --- a/pystache/locator.py +++ b/pystache/locator.py @@ -91,9 +91,8 @@ class Locator(object): if template_extension is None: template_extension = self.template_extension - if template_extension is not False: - if not file_name.endswith(template_extension): - file_name += os.path.extsep + template_extension + if template_extension is not False and not file_name.endswith(template_extension): + file_name += os.path.extsep + template_extension return file_name -- cgit v1.2.1