diff --git a/morituri/image/toc.py b/morituri/image/toc.py index d4053ef..aba2410 100644 --- a/morituri/image/toc.py +++ b/morituri/image/toc.py @@ -6,17 +6,17 @@ # Copyright (C) 2009 Thomas Vander Stichele # This file is part of morituri. -# +# # morituri is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # morituri is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with morituri. If not, see . @@ -264,7 +264,7 @@ class TocFile(object, log.Loggable): # store the pregapLength to add it when we index 1 for this # track on the next iteration pregapLength = length - + # look for INDEX lines m = _INDEX_RE.search(line) if m: diff --git a/morituri/program/cdrdao.py b/morituri/program/cdrdao.py index 86aa5bd..a97c36c 100644 --- a/morituri/program/cdrdao.py +++ b/morituri/program/cdrdao.py @@ -6,17 +6,17 @@ # Copyright (C) 2009 Thomas Vander Stichele # This file is part of morituri. -# +# # morituri is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # morituri is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with morituri. If not, see . diff --git a/morituri/result/logger.py b/morituri/result/logger.py index c18cea1..7df4eca 100644 --- a/morituri/result/logger.py +++ b/morituri/result/logger.py @@ -6,17 +6,17 @@ # Copyright (C) 2009 Thomas Vander Stichele # This file is part of morituri. -# +# # morituri is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # morituri is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with morituri. If not, see . @@ -77,7 +77,7 @@ class MorituriLogger(object): length = table.getTrackLength(t.number) lines.append( " %2d | %6d - %s | %6d - %s" % ( - t.number, + t.number, start, common.framesToMSF(start), length, common.framesToMSF(length))) @@ -115,7 +115,7 @@ class MorituriLogger(object): lines.append(" WARNING: CRCs don't match!") else: lines.append(" WARNING: no CRC check done") - + if trackResult.accurip: lines.append(' Accurately ripped (confidence %d) [%08X]' % ( trackResult.ARDBConfidence, trackResult.ARCRC)) diff --git a/morituri/result/result.py b/morituri/result/result.py index b5d3b7a..c94e87e 100644 --- a/morituri/result/result.py +++ b/morituri/result/result.py @@ -6,17 +6,17 @@ # Copyright (C) 2009 Thomas Vander Stichele # This file is part of morituri. -# +# # morituri is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # morituri is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with morituri. If not, see .