From 1d4ee006585ea59c49716885cb9aee73d0f02b60 Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Sat, 8 Jul 2017 07:48:30 -0700 Subject: [PATCH] Consistent copyright notices --- blocksfree/__init__.py | 1 + blocksfree/diskimg.py | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/blocksfree/__init__.py b/blocksfree/__init__.py index 6b16109..b43af2c 100644 --- a/blocksfree/__init__.py +++ b/blocksfree/__init__.py @@ -15,5 +15,6 @@ # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + from . import legacy, diskimg from .logging import log diff --git a/blocksfree/diskimg.py b/blocksfree/diskimg.py index 81270bf..3715884 100644 --- a/blocksfree/diskimg.py +++ b/blocksfree/diskimg.py @@ -1,3 +1,21 @@ +# vim: set tabstop=4 shiftwidth=4 noexpandtab filetype=python: + +# Copyright (C) 2017 T. Joseph Carter +# +# This program 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 2 of the License, or (at your +# option) any later version. +# +# This program 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 this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + import os import struct from collections import namedtuple