From ef546da72b6a8a503f6f4b93dd5b17216ca5e352 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Thu, 1 Nov 2007 15:29:31 -0700
Subject: [PATCH] trailing-whitespace eradication, no functional changes

---
 src/allmydata/util/testutil.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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)
-- 
2.45.2