PEP8 fixes.
authorDaniel Beecham <redacted>
Thu, 21 Jun 2012 20:21:45 +0000 (22:21 +0200)
committerDaniel Beecham <redacted>
Thu, 21 Jun 2012 20:21:45 +0000 (22:21 +0200)
xkcd-password.py

index 3f54d6d5ce263393f5aa92a59b40d204db0e70e6..8dc6bf141f051dfb5b6f08e3007eeac32dcf26ff 100755 (executable)
@@ -44,7 +44,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 try:
     rng = random.SystemRandom
 except AttributeError:
-    sys.stderr.write("WARNING: System does not support cryptographically" 
+    sys.stderr.write("WARNING: System does not support cryptographically"
             "secure random number generator or you are using Python version"
             "< 2.4. Continuing with less-secure generator.\n")
     rng = random.Random
@@ -77,7 +77,7 @@ def generate_wordlist(wordfile=None,
         sys.stderr.write("Could not find a word file, or word file does"
         " not exist.\n")
         sys.exit(1)
-    
+
     wordfile = os.path.expanduser(wordfile)  # just to be sure
 
     words = []
git clone https://git.99rst.org/PROJECT