Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 6C0F3431FC7 for ; Mon, 12 May 2014 03:35:53 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HbpDbY-8bbiO for ; Mon, 12 May 2014 03:35:47 -0700 (PDT) Received: from mail-la0-f50.google.com (mail-la0-f50.google.com [209.85.215.50]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 463B8431FC0 for ; Mon, 12 May 2014 03:35:47 -0700 (PDT) Received: by mail-la0-f50.google.com with SMTP id b8so1791261lan.9 for ; Mon, 12 May 2014 03:35:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=TL0D4FXycHqJ1bHvccr7RnO03WkfXJ8ZtxytnB4l03U=; b=TO6ctuU1sbBD1ejtfoCPOFY1p8pNUUY6fRAOof8L8q8aS/rwc1nVnTZhgcn9oQVgZ/ aqI8/w3JH9nW7kvO++WTUF9krTj8B1oKsZTmLqouH1tGva8KnGaEOiIe6WoxFgKrwSbO s23BRkpeoEQW7Qtgl2baCWcfklDRAB8elb5VxuBjyxdWeYQB+BiMs7YiJwIk7xo0Z/ct 5g7PR/yQnF2oGRUeAylTGYNFDuRUXgv5vAB+Mnk8swS6t9sk3cna8o4nK3+7vlJwcyy9 +pbqRruh8NFdj/4/2dIjXFg/lko0/YqNXsMw4tGp1VI3P6Z/C0Ed/iHKj70/7YEK1UvP 7T+g== X-Gm-Message-State: ALoCoQm3s259ZZ/Kt0IQilMRhzI8cxMmQD+gmfh88k+20tHzRTNJYxwieUV0CeVLEkmV8FHHgRet X-Received: by 10.112.185.105 with SMTP id fb9mr609639lbc.72.1399890945826; Mon, 12 May 2014 03:35:45 -0700 (PDT) Received: from localhost (217-67-221-143.itsa.net.pl. [217.67.221.143]) by mx.google.com with ESMTPSA id q4sm13409945lbh.20.2014.05.12.03.35.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 12 May 2014 03:35:44 -0700 (PDT) From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= To: notmuch@notmuchmail.org Subject: [PATCH] Unset html_static_path in Python bindings docs Date: Mon, 12 May 2014 12:35:41 +0200 Message-Id: <1399890941-9300-1-git-send-email-aidecoe@aidecoe.name> X-Mailer: git-send-email 1.9.2 In-Reply-To: <1399890746-8803-1-git-send-email-aidecoe@aidecoe.name> References: <1399890746-8803-1-git-send-email-aidecoe@aidecoe.name> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2014 10:35:53 -0000 html_static_path is a kind of source directory and it was set to destination directory (../html) which caused infinite recursion with Sphinx 1.2 and above. --- bindings/python/docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py index 9db377f..5107a96 100644 --- a/bindings/python/docs/source/conf.py +++ b/bindings/python/docs/source/conf.py @@ -140,7 +140,7 @@ html_theme = 'default' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['../html'] +html_static_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -- 1.9.2