Skip to content

Commit

Permalink
Update copyright year to 2017.
Browse files Browse the repository at this point in the history
  • Loading branch information
mblayman committed Jan 22, 2017
1 parent f79a258 commit d477682
Show file tree
Hide file tree
Showing 57 changed files with 57 additions and 57 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016, Matt Layman and contributors. See AUTHORS for more details.
Copyright (c) 2017, 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'2016, Matt Layman'
copyright = u'2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

import logging

Expand Down
2 changes: 1 addition & 1 deletion handroll/commands/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

from .base import Command # NOQA
2 changes: 1 addition & 1 deletion handroll/commands/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

import sys

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

from handroll.commands.base import Command, finish, prepare_director
from handroll.i18n import _
Expand Down
2 changes: 1 addition & 1 deletion handroll/commands/builtins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

from handroll.commands.build import BuildCommand
from handroll.commands.scaffold import ScaffoldCommand
Expand Down
2 changes: 1 addition & 1 deletion handroll/commands/scaffold.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

from handroll.commands.base import Command, finish
from handroll.i18n import _
Expand Down
2 changes: 1 addition & 1 deletion handroll/commands/watch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

from handroll.commands.base import Command, prepare_director
from handroll.i18n import _
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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

import io
import json
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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

import os

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

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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

import markdown

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

import io
try:
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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

from datetime import datetime
import time
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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

import argparse
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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman


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

from handroll import signals

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

import os

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

from pkg_resources import iter_entry_points

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

import os

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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

import os

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

import os
import shutil
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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion handroll/signals.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman
"""Signals fired during execution"""

from blinker import signal
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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

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

import mock

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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

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

import mock

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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

import os

Expand Down
2 changes: 1 addition & 1 deletion handroll/tests/test_scaffolder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

import os

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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, 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) 2016, Matt Layman
# Copyright (c) 2017, Matt Layman

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

0 comments on commit d477682

Please sign in to comment.