From f93bca456490eaaae7f6c1f7ad4fef458add886b Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 23 Dec 2014 08:23:40 +0100 Subject: [PATCH] Patch for an Issue #1058 --- lib/core/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/core/common.py b/lib/core/common.py index a7648cb71..be9260d46 100755 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2511,6 +2511,9 @@ def findDynamicContent(firstPage, secondPage): are dynamic, proper markings will be made """ + if not firstPage or not secondPage: + return + infoMsg = "searching for dynamic content" logger.info(infoMsg)