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 362AA431FC2 for ; Mon, 12 May 2014 03:32:38 -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 J9Q+zENaN8eW for ; Mon, 12 May 2014 03:32:32 -0700 (PDT) Received: from mail-la0-f49.google.com (mail-la0-f49.google.com [209.85.215.49]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 10175431FC0 for ; Mon, 12 May 2014 03:32:31 -0700 (PDT) Received: by mail-la0-f49.google.com with SMTP id pv20so1712537lab.8 for ; Mon, 12 May 2014 03:32:30 -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=83X0v1SGLr/846HtIRHcN7iGjNJ3RrCKvDaCtUgOdwk=; b=ePvqg0xmf63+TEhrq2GIqJoq3APo1XHcaArg9DfaC+xgYOq5uSupiEMJPvhxio5IaF 3e5AUZZfcgOAe5qv32oEvBZ5V5jmqxFaZCBXLnam7ZY4r+IWyU56/W/WB56YELAhLTRM 1ZuyTyIt8MX2W6abpRTAiGjEjIJzBnGzZf/J0YNFfLka7rggnic5wwdG7SlOIIr5f/TY WZMe0ZG9IClOgpzIMz8H/GpN1U1MMEp2+LDDM1Y7rTumTPq3xaoLmeinMU9u5EkiEYSu aJ3zOMevwXAXdLIh5SYAYuctpR3jqTZdSNYVHoeRIg32sFul6TPfCvaDJCZvKVDcab/E Yy3Q== X-Gm-Message-State: ALoCoQn5vnegjfhhKq/eWK2OU8sds11woUBzK/SuTQZj2e4OJRN9R7Gn0btoj+vOFIdVlsMpMjZ+ X-Received: by 10.152.37.229 with SMTP id b5mr1420791lak.40.1399890750426; Mon, 12 May 2014 03:32:30 -0700 (PDT) Received: from localhost (217-67-221-143.itsa.net.pl. [217.67.221.143]) by mx.google.com with ESMTPSA id eo12sm13408560lbb.13.2014.05.12.03.32.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 12 May 2014 03:32:29 -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:32:26 +0200 Message-Id: <1399890746-8803-1-git-send-email-aidecoe@aidecoe.name> X-Mailer: git-send-email 1.9.2 In-Reply-To: <4244e9c2c0e64eedcd8e4bcca5c24f942f747548.1399737242.git.wking@tremily.us> References: <4244e9c2c0e64eedcd8e4bcca5c24f942f747548.1399737242.git.wking@tremily.us> 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:32:38 -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..692a8f2 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