From: Brian Warner <warner@allmydata.com>
Date: Thu, 1 Nov 2007 22:29:31 +0000 (-0700)
Subject: trailing-whitespace eradication, no functional changes
X-Git-Tag: allmydata-tahoe-0.7.0~314
X-Git-Url: https://git.rkrishnan.org/components/specifications/flags/quickstart.html?a=commitdiff_plain;h=ef546da72b6a8a503f6f4b93dd5b17216ca5e352;p=tahoe-lafs%2Ftahoe-lafs.git

trailing-whitespace eradication, no functional changes
---

diff --git a/src/allmydata/util/testutil.py b/src/allmydata/util/testutil.py
index 0025b4e3..370102f7 100644
--- a/src/allmydata/util/testutil.py
+++ b/src/allmydata/util/testutil.py
@@ -7,7 +7,7 @@ class SignalMixin:
     # outside the usual reactor.run() environment. It is copied from
     # Twisted's twisted.test.test_process
     sigchldHandler = None
-    
+
     def setUpClass(self):
         # make sure SIGCHLD handler is installed, as it should be on
         # reactor.run(). problem is reactor may not have been run when this
@@ -15,7 +15,7 @@ class SignalMixin:
         if hasattr(reactor, "_handleSigchld") and hasattr(signal, "SIGCHLD"):
             self.sigchldHandler = signal.signal(signal.SIGCHLD,
                                                 reactor._handleSigchld)
-    
+
     def tearDownClass(self):
         if self.sigchldHandler:
             signal.signal(signal.SIGCHLD, self.sigchldHandler)