]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
whitespace-cleanup
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 25 Jul 2011 01:55:46 +0000 (18:55 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 25 Jul 2011 01:55:46 +0000 (18:55 -0700)
docs/configuration.rst
src/allmydata/node.py
src/allmydata/test/common.py
src/allmydata/test/test_client.py
src/allmydata/test/test_runner.py

index a57672527312fda7400cb48a06346a3d0afb67d7..eb6fc1bb54058e9393f540b9298687d8733ffa2a 100644 (file)
@@ -249,6 +249,7 @@ set the ``tub.location`` option described below.
     used for files that usually (on a Unix system) go into ``/tmp``. The string
     will be interpreted relative to the node's base directory.
 
+
 Client Configuration
 ====================
 
@@ -321,6 +322,7 @@ Client Configuration
     (Mutable files use a different share placement algorithm that does not
     currently consider this parameter.)
 
+
 Frontend Configuration
 ======================
 
@@ -355,6 +357,7 @@ FTP, SFTP
     ``[sftpd]`` sections of ``tahoe.cfg``.
 
 
+
 Storage Server Configuration
 ============================
 
@@ -540,6 +543,7 @@ This section describes these other files.
   many people as possible, put the empty string (so that ``private/convergence``
   is a zero-length file).
 
+
 Other files
 ===========
 
index 7f5bf61e5b261c3b2494cdbfdcd5f5c5af35b27b..99665e5f85b4fc76e6ef08f7a5ea9889e17fee24 100644 (file)
@@ -1,4 +1,3 @@
-
 import datetime, os.path, re, types, ConfigParser, tempfile
 from base64 import b32decode, b32encode
 
@@ -61,7 +60,6 @@ class Node(service.MultiService):
 
         # creates self.config, populates from distinct files if necessary
         self.read_config()
-
         nickname_utf8 = self.get_config("node", "nickname", "<unspecified>")
         self.nickname = nickname_utf8.decode("utf-8")
         assert type(self.nickname) is unicode
@@ -344,4 +342,3 @@ class Node(service.MultiService):
     def add_service(self, s):
         s.setServiceParent(self)
         return s
-
index d68e50afd936bf96982050c7971ea747e90dc42e..589d540dae277cde784e5d22a8c77ba9ac9cbadd 100644 (file)
@@ -336,7 +336,6 @@ class LoggingServiceParent(service.MultiService):
     def log(self, *args, **kwargs):
         return log.msg(*args, **kwargs)
 
-
 class SystemTestMixin(pollmixin.PollMixin, testutil.StallMixin):
 
     # SystemTestMixin tests tend to be a lot of work, and we have a few
index 629660b65b760718f6553240bd0807a4bbd4470c..1f96a42433afff180853d32e799c32f9f049dbf4 100644 (file)
@@ -1,4 +1,3 @@
-
 import os
 from twisted.trial import unittest
 from twisted.application import service
index 953093279398f8158fd3f734b15356f495670a34..d13f6dae5821e36de6611389cb091b9b8b948f52 100644 (file)
@@ -1,4 +1,3 @@
-
 from twisted.trial import unittest
 
 from twisted.python import usage, runtime