From: Brian Warner <warner@allmydata.com>
Date: Thu, 1 Nov 2007 22:33:41 +0000 (-0700)
Subject: trailing-whitespace eradication, no functional changes
X-Git-Tag: allmydata-tahoe-0.7.0~313
X-Git-Url: https://git.rkrishnan.org/specifications/%5B/%5D%20/flags/statistics?a=commitdiff_plain;h=9cd3eaec1efd1ab6c9503f01e3f7e3a021796133;p=tahoe-lafs%2Ftahoe-lafs.git

trailing-whitespace eradication, no functional changes
---

diff --git a/src/allmydata/Crypto/PublicKey/RSA.py b/src/allmydata/Crypto/PublicKey/RSA.py
index 6453373f..b85e3b3a 100644
--- a/src/allmydata/Crypto/PublicKey/RSA.py
+++ b/src/allmydata/Crypto/PublicKey/RSA.py
@@ -73,7 +73,7 @@ def construct(tuple):
         field = obj.keydata[i]
         setattr(obj, field, tuple[i])
     if len(tuple) >= 5:
-        # Ensure p is smaller than q 
+        # Ensure p is smaller than q
         if obj.p>obj.q:
             (obj.p, obj.q)=(obj.q, obj.p)