Skip to content

Commit

Permalink
Update copyright year.
Browse files Browse the repository at this point in the history
  • Loading branch information
mblayman committed Feb 24, 2015
1 parent 0f45fb0 commit 59cc8ca
Show file tree
Hide file tree
Showing 34 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014, Matt Layman and contributors. See AUTHORS for more details.
Copyright (c) 2015, Matt Layman and contributors. See AUTHORS for more details.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

# General information about the project.
project = u'handroll'
copyright = u'2014, Matt Layman'
copyright = u'2015, Matt Layman'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion handroll/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import logging

Expand Down
2 changes: 1 addition & 1 deletion handroll/command.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman
"""The main entry point for the tool"""

import argparse
Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import filecmp
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/atom.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

from datetime import datetime
import io
Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/generic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import io
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/md.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import markdown

Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/rst.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

from docutils.core import publish_parts

Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/sass.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

from distutils import spawn
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/composers/txt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import textile

Expand Down
2 changes: 1 addition & 1 deletion handroll/configuration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

try:
from ConfigParser import ConfigParser
Expand Down
2 changes: 1 addition & 1 deletion handroll/director.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os
import time
Expand Down
2 changes: 1 addition & 1 deletion handroll/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman


class AbortError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion handroll/handlers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

from watchdog.events import FileSystemEventHandler

Expand Down
2 changes: 1 addition & 1 deletion handroll/i18n.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import gettext
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/server.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/site.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman
"""The website model"""

import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/template/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os

Expand Down
2 changes: 1 addition & 1 deletion handroll/template/catalog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman
"""The catalog of available templates"""

import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/template/j2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os

Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import logging

Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/factory.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os
import tempfile
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_command.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_composers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import inspect
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_configuration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import inspect
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_director.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os
import tempfile
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_handlers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os
import tempfile
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_server.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import tempfile

Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_site.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os
import tempfile
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import os
import tempfile
Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/testcase.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

import unittest

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman
"""
Learn more about handroll at the `project home page
<http://handroll.github.io>`_. handroll development is done on `GitHub
Expand Down
2 changes: 1 addition & 1 deletion transifex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014, Matt Layman
# Copyright (c) 2015, Matt Layman

from ConfigParser import ConfigParser, NoOptionError, NoSectionError
import os
Expand Down

0 comments on commit 59cc8ca

Please sign in to comment.