python-adfs

changeset 68:301cf42be097

Some minor tidying up.
author David Boddie <david@boddie.org.uk>
date Thu Sep 17 22:25:55 2009 +0200
parents 19d4af309d2d
children 6dd865e79bff
files ADFSlib.py
diffstat 1 files changed, 5 insertions(+), 7 deletions(-) [+]
line diff
     1.1 --- a/ADFSlib.py	Sun Jul 13 00:04:56 2008 +0200
     1.2 +++ b/ADFSlib.py	Thu Sep 17 22:25:55 2009 +0200
     1.3 @@ -1,8 +1,6 @@
     1.4  #! /usr/bin/env python
     1.5  """
     1.6 -ADFSlib.py
     1.7 -
     1.8 -A library for reading ADFS disc images.
     1.9 +ADFSlib.py, a library for reading ADFS disc images.
    1.10  
    1.11  Copyright (c) 2003-2008, David Boddie
    1.12  
    1.13 @@ -682,7 +680,7 @@
    1.14                  
    1.15                      # The byte found was unexpected - backtrack to the
    1.16                      # byte after the start of this block and try again.
    1.17 -                    print "Backtrack from %s to %s" % (hex(a), hex(current_start+1))
    1.18 +                    #print "Backtrack from %s to %s" % (hex(a), hex(current_start+1))
    1.19                      
    1.20                      next = current_start + 1
    1.21                      current_piece = None
    1.22 @@ -1763,9 +1761,9 @@
    1.23      def print_log(self, verbose = 0):
    1.24      
    1.25          """print_log(self, verbose = 0)
    1.26 -        \r
    1.27 -        \rPrint the disc verification log. Any purely informational messages
    1.28 -        \rare only printed is verbose is set to 1.
    1.29 +        
    1.30 +        Print the disc verification log. Any purely informational messages
    1.31 +        are only printed if verbose is set to 1.
    1.32          """
    1.33          
    1.34          if hasattr(self, "disc_map") and self.disc_map.has_key(1):