Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.012 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'python': 0.08; 'from:addr:python': 0.09; 'message- id:@webmail.messagingengine.com': 0.09; 'x-mailer:messagingengine.com webmail interface': 0.09; 'from:addr:bdurham.com': 0.16; 'subject:server': 0.16; 'ways:': 0.16; 'received:internal': 0.18; 'to:2**1': 0.20; "doesn't": 0.22; 'header:In-Reply-To:1': 0.22; 'interpreted': 0.23; 'received:10.202': 0.23; 'received:10.202.2': 0.23; 'received:66.111': 0.23; 'received:66.111.4': 0.23; 'received:messagingengine.com': 0.23; 'received:smtp.messagingengine.com': 0.23; 'vs.': 0.23; 'work:': 0.29; 'example': 0.30; 'config': 0.30; 'malcolm': 0.30; 'to:addr :python-list': 0.33; 'character': 0.34; 'charset:us-ascii': 0.36; 'file': 0.36; 'but': 0.37; 'should': 0.38; 'subject:: ': 0.39; 'getting': 0.39; 'to:addr:python.org': 0.39; 'thinking': 0.40; 'your': 0.61; 'header:Message-Id:1': 0.61; 'from:no real name:2**0': 0.63; 'disclaimer:': 0.71 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:references:subject :in-reply-to:date; s=smtpout; bh=2Hsb8I/+dSvGj2KQv5zlAJxuVQ0=; b= EfrX39POc2VkZoAOSBuNibx/MyqjSn5A1Eod1r9/xCF/nFnp9YSw+VpvTt2BY696 b5eUTiMJSCCTOh+PUThQ84GXDHp5k2PqJikUBoFURdjSnk+Bya+W54QEkn3RDb+N zmoRYvlaUrD35VtZyzHimIp4+cokEnF0Pp842SgFNyw= X-Sasl-Enc: xBN9OEoC/oc0aJGx6Pm674/H1PBUNpx1sTNdObnKIzp1 1314969073 From: python@bdurham.com To: "Fokke Nauta" , python-list@python.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii" X-Mailer: MessagingEngine.com Webmail Interface References: <9c4trjFcfmU1@mid.individual.net><9c6n4oFsnbU1@mid.individual.net><9c9578F5eaU2@mid.individual.net> <9cbvupFjr3U3@mid.individual.net> Subject: Re: Installing WebDAV server In-Reply-To: <9cbvupFjr3U3@mid.individual.net> Date: Fri, 02 Sep 2011 09:11:13 -0400 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 25 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1314969082 news.xs4all.nl 2537 [2001:888:2000:d::a6]:54429 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:12637 Hi Fokke, Disclaimer: I have no experience with the Python WebDAV package you're using. But a thought: > In the config file it says: > "# main directory > directory = \Webdav" Perhaps you should qualify your directory path with a drive letter? I would try this 2 ways: directory = E:\Webdav And if that doesn't work: directory = E:/Webdav My thinking about the 2nd example is that perhaps the \W is getting interpreted as a control character vs. "backslash" "W". Malcolm