Skip to content

Commit

Permalink
Update some copyright headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Nov 4, 2013
1 parent f3836f3 commit c42e47b
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dulwich/client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# client.py -- Implementation of the server side git protocols
# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008 John Carr
#
# This program is free software; you can redistribute it and/or
Expand Down
2 changes: 1 addition & 1 deletion dulwich/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# config.py - Reading and writing Git config files
# Copyright (C) 2011 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2011-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/errors.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# errors.py -- errors for dulwich
# Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2009-2012 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/fastexport.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# __init__.py -- Fast export/import functionality
# Copyright (C) 2010 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2010-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
4 changes: 2 additions & 2 deletions dulwich/hooks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# hooks.py -- for dealing with git hooks
# Copyright (C) 2012-2013 Jelmer Vernooij and others.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand All @@ -20,7 +21,6 @@
import os
import subprocess
import tempfile
import warnings

from dulwich.errors import (
HookError,
Expand All @@ -30,7 +30,7 @@
class Hook(object):
"""Generic hook object."""

def execute(elf, *args):
def execute(self, *args):
"""Execute the hook with the given args
:param args: argument list to hook
Expand Down
2 changes: 1 addition & 1 deletion dulwich/index.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# index.py -- File parser/writer for the git index file
# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/object_store.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# object_store.py -- Object store for git objects
# Copyright (C) 2008-2012 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
# and others
#
# This program is free software; you can redistribute it and/or
Expand Down
2 changes: 1 addition & 1 deletion dulwich/objects.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# objects.py -- Access to base git objects
# Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/pack.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pack.py -- For dealing with packed git objects.
# Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/patch.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# patch.py -- For dealing with packed-style patches.
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2009-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/protocol.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# protocol.py -- Shared parts of the git protocols
# Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk>
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2012 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
2 changes: 1 addition & 1 deletion dulwich/repo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# repo.py -- For dealing with git repositories.
# Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
1 change: 1 addition & 0 deletions dulwich/server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# server.py -- Implementation of the server side git protocols
# Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk>
# Coprygith (C) 2011-2012 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
1 change: 1 addition & 0 deletions dulwich/web.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# web.py -- WSGI smart-http server
# Copyright (C) 2010 Google, Inc.
# Copyright (C) 2012 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down

0 comments on commit c42e47b

Please sign in to comment.