diff --git a/LICENSE b/LICENSE index 717ff16..ea8c217 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2010 Kenneth Reitz. +Copyright (c) 2011 Kenneth Reitz. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/_themes/LICENSE b/docs/_themes/LICENSE index 81f4d30..b160a8e 100644 --- a/docs/_themes/LICENSE +++ b/docs/_themes/LICENSE @@ -1,6 +1,6 @@ Modifications: -Copyright (c) 2010 Kenneth Reitz. +Copyright (c) 2011 Kenneth Reitz. Original Project: diff --git a/docs/conf.py b/docs/conf.py index 325002c..2a642c9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ master_doc = 'index' # General information about the project. project = u'Tablib' -copyright = u'2010, Kenneth Reitz. Styles (modified) © Armin Ronacher' +copyright = u'2011, Kenneth Reitz. Styles (modified) © Armin Ronacher' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/fabfile.py b/fabfile.py index 391bf92..6e72092 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,7 +1,7 @@ import os from fabric.api import * - +os.f def scrub(): """ Death to the bytecode! """ local('rm -fr dist build') diff --git a/tablib/core.py b/tablib/core.py index da49788..c7e9dd5 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -5,7 +5,7 @@ This module implements the central tablib objects. - :copyright: (c) 2010 by Kenneth Reitz. + :copyright: (c) 2011 by Kenneth Reitz. :license: MIT, see LICENSE for more details. """ @@ -19,7 +19,7 @@ __version__ = '0.9.2' __build__ = 0x000902 __author__ = 'Kenneth Reitz' __license__ = 'MIT' -__copyright__ = 'Copyright 2010 Kenneth Reitz' +__copyright__ = 'Copyright 2011 Kenneth Reitz' class Row(object):