[tor-commits] [stem/master] Update copyright dates for 2017

atagar at torproject.org atagar at torproject.org
Wed Feb 1 16:37:32 UTC 2017


commit 8ef8798d30d3fccca1ae7690ade29b41c5f1d6cc
Author: Damian Johnson <atagar at torproject.org>
Date:   Mon Jan 30 10:41:47 2017 -0800

    Update copyright dates for 2017
    
    Bumping the dates for 2017...
    
      % find stem -type f -iname '*.py' -exec sed -i 's/2016/2017/g' "{}" +;
---
 cache_fallback_directories.py                | 2 +-
 cache_manual.py                              | 2 +-
 run_tests.py                                 | 2 +-
 stem/__init__.py                             | 2 +-
 stem/connection.py                           | 2 +-
 stem/control.py                              | 2 +-
 stem/descriptor/__init__.py                  | 2 +-
 stem/descriptor/export.py                    | 2 +-
 stem/descriptor/extrainfo_descriptor.py      | 2 +-
 stem/descriptor/hidden_service_descriptor.py | 2 +-
 stem/descriptor/microdescriptor.py           | 2 +-
 stem/descriptor/networkstatus.py             | 2 +-
 stem/descriptor/reader.py                    | 2 +-
 stem/descriptor/remote.py                    | 2 +-
 stem/descriptor/router_status_entry.py       | 2 +-
 stem/descriptor/server_descriptor.py         | 2 +-
 stem/descriptor/tordnsel.py                  | 2 +-
 stem/exit_policy.py                          | 2 +-
 stem/interpreter/__init__.py                 | 2 +-
 stem/interpreter/arguments.py                | 2 +-
 stem/interpreter/autocomplete.py             | 2 +-
 stem/interpreter/commands.py                 | 2 +-
 stem/interpreter/help.py                     | 2 +-
 stem/manual.py                               | 2 +-
 stem/prereq.py                               | 2 +-
 stem/process.py                              | 2 +-
 stem/response/__init__.py                    | 2 +-
 stem/response/add_onion.py                   | 2 +-
 stem/response/authchallenge.py               | 2 +-
 stem/response/events.py                      | 2 +-
 stem/response/getconf.py                     | 2 +-
 stem/response/getinfo.py                     | 2 +-
 stem/response/mapaddress.py                  | 2 +-
 stem/response/protocolinfo.py                | 2 +-
 stem/socket.py                               | 2 +-
 stem/util/__init__.py                        | 2 +-
 stem/util/conf.py                            | 2 +-
 stem/util/connection.py                      | 2 +-
 stem/util/enum.py                            | 2 +-
 stem/util/log.py                             | 2 +-
 stem/util/proc.py                            | 2 +-
 stem/util/str_tools.py                       | 2 +-
 stem/util/system.py                          | 2 +-
 stem/util/term.py                            | 2 +-
 stem/util/test_tools.py                      | 2 +-
 stem/util/tor_tools.py                       | 2 +-
 stem/version.py                              | 2 +-
 test/__init__.py                             | 2 +-
 test/arguments.py                            | 2 +-
 test/mocking.py                              | 2 +-
 test/network.py                              | 2 +-
 test/output.py                               | 2 +-
 test/runner.py                               | 2 +-
 test/util.py                                 | 2 +-
 tor-prompt                                   | 2 +-
 55 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/cache_fallback_directories.py b/cache_fallback_directories.py
index 79f21eb..4d5665b 100755
--- a/cache_fallback_directories.py
+++ b/cache_fallback_directories.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright 2016, Damian Johnson and The Tor Project
+# Copyright 2016-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/cache_manual.py b/cache_manual.py
index 19e73f0..7a4bd5c 100755
--- a/cache_manual.py
+++ b/cache_manual.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/run_tests.py b/run_tests.py
index ca6be67..abb5123 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/__init__.py b/stem/__init__.py
index de2ce9d..e9e621c 100644
--- a/stem/__init__.py
+++ b/stem/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/connection.py b/stem/connection.py
index 1f023a4..967b766 100644
--- a/stem/connection.py
+++ b/stem/connection.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/control.py b/stem/control.py
index 5040778..61d54fb 100644
--- a/stem/control.py
+++ b/stem/control.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/__init__.py b/stem/descriptor/__init__.py
index ee0b289..c16106d 100644
--- a/stem/descriptor/__init__.py
+++ b/stem/descriptor/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/export.py b/stem/descriptor/export.py
index d8222a0..945c428 100644
--- a/stem/descriptor/export.py
+++ b/stem/descriptor/export.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/extrainfo_descriptor.py b/stem/descriptor/extrainfo_descriptor.py
index e366bee..716b75c 100644
--- a/stem/descriptor/extrainfo_descriptor.py
+++ b/stem/descriptor/extrainfo_descriptor.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/hidden_service_descriptor.py b/stem/descriptor/hidden_service_descriptor.py
index 43a3e4f..97cd19e 100644
--- a/stem/descriptor/hidden_service_descriptor.py
+++ b/stem/descriptor/hidden_service_descriptor.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/microdescriptor.py b/stem/descriptor/microdescriptor.py
index 0f1a015..ce3eb08 100644
--- a/stem/descriptor/microdescriptor.py
+++ b/stem/descriptor/microdescriptor.py
@@ -1,4 +1,4 @@
-# Copyright 2013-2016, Damian Johnson and The Tor Project
+# Copyright 2013-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/networkstatus.py b/stem/descriptor/networkstatus.py
index 78b453b..cb801f0 100644
--- a/stem/descriptor/networkstatus.py
+++ b/stem/descriptor/networkstatus.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/reader.py b/stem/descriptor/reader.py
index acfce67..b4e6ab4 100644
--- a/stem/descriptor/reader.py
+++ b/stem/descriptor/reader.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py
index 4283616..a66672c 100644
--- a/stem/descriptor/remote.py
+++ b/stem/descriptor/remote.py
@@ -1,4 +1,4 @@
-# Copyright 2013-2016, Damian Johnson and The Tor Project
+# Copyright 2013-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/router_status_entry.py b/stem/descriptor/router_status_entry.py
index 98fc042..880051b 100644
--- a/stem/descriptor/router_status_entry.py
+++ b/stem/descriptor/router_status_entry.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/server_descriptor.py b/stem/descriptor/server_descriptor.py
index 0ba28b3..ca6a16b 100644
--- a/stem/descriptor/server_descriptor.py
+++ b/stem/descriptor/server_descriptor.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/descriptor/tordnsel.py b/stem/descriptor/tordnsel.py
index cd85e8e..731dbfa 100644
--- a/stem/descriptor/tordnsel.py
+++ b/stem/descriptor/tordnsel.py
@@ -1,4 +1,4 @@
-# Copyright 2013-2016, Damian Johnson and The Tor Project
+# Copyright 2013-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/exit_policy.py b/stem/exit_policy.py
index 2e2b459..aaf10b0 100644
--- a/stem/exit_policy.py
+++ b/stem/exit_policy.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/interpreter/__init__.py b/stem/interpreter/__init__.py
index f516565..237a781 100644
--- a/stem/interpreter/__init__.py
+++ b/stem/interpreter/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/interpreter/arguments.py b/stem/interpreter/arguments.py
index 2bb1783..010aa3f 100644
--- a/stem/interpreter/arguments.py
+++ b/stem/interpreter/arguments.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/interpreter/autocomplete.py b/stem/interpreter/autocomplete.py
index ac67609..1c483cc 100644
--- a/stem/interpreter/autocomplete.py
+++ b/stem/interpreter/autocomplete.py
@@ -1,4 +1,4 @@
-# Copyright 2014-2016, Damian Johnson and The Tor Project
+# Copyright 2014-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/interpreter/commands.py b/stem/interpreter/commands.py
index e348c6e..366f256 100644
--- a/stem/interpreter/commands.py
+++ b/stem/interpreter/commands.py
@@ -1,4 +1,4 @@
-# Copyright 2014-2016, Damian Johnson and The Tor Project
+# Copyright 2014-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/interpreter/help.py b/stem/interpreter/help.py
index 5c7fa06..6fb0917 100644
--- a/stem/interpreter/help.py
+++ b/stem/interpreter/help.py
@@ -1,4 +1,4 @@
-# Copyright 2014-2016, Damian Johnson and The Tor Project
+# Copyright 2014-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/manual.py b/stem/manual.py
index 70cae73..f5970ce 100644
--- a/stem/manual.py
+++ b/stem/manual.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/prereq.py b/stem/prereq.py
index 8dafd85..4574771 100644
--- a/stem/prereq.py
+++ b/stem/prereq.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/process.py b/stem/process.py
index 08e0426..ec10b21 100644
--- a/stem/process.py
+++ b/stem/process.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/response/__init__.py b/stem/response/__init__.py
index 3300d41..8d1eaf8 100644
--- a/stem/response/__init__.py
+++ b/stem/response/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/response/add_onion.py b/stem/response/add_onion.py
index cbf7594..88de780 100644
--- a/stem/response/add_onion.py
+++ b/stem/response/add_onion.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import stem.response
diff --git a/stem/response/authchallenge.py b/stem/response/authchallenge.py
index 3295d14..d77fd81 100644
--- a/stem/response/authchallenge.py
+++ b/stem/response/authchallenge.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import binascii
diff --git a/stem/response/events.py b/stem/response/events.py
index 91aaecd..320e6e9 100644
--- a/stem/response/events.py
+++ b/stem/response/events.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import io
diff --git a/stem/response/getconf.py b/stem/response/getconf.py
index 9d786fc..2bbc6d4 100644
--- a/stem/response/getconf.py
+++ b/stem/response/getconf.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import stem.response
diff --git a/stem/response/getinfo.py b/stem/response/getinfo.py
index 4dad540..0d3a0f0 100644
--- a/stem/response/getinfo.py
+++ b/stem/response/getinfo.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import stem.response
diff --git a/stem/response/mapaddress.py b/stem/response/mapaddress.py
index 76334f8..7535e92 100644
--- a/stem/response/mapaddress.py
+++ b/stem/response/mapaddress.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import stem.response
diff --git a/stem/response/protocolinfo.py b/stem/response/protocolinfo.py
index 6abdf47..6243b4d 100644
--- a/stem/response/protocolinfo.py
+++ b/stem/response/protocolinfo.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import stem.response
diff --git a/stem/socket.py b/stem/socket.py
index 4537ea6..011f35e 100644
--- a/stem/socket.py
+++ b/stem/socket.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/__init__.py b/stem/util/__init__.py
index de3c0ea..5ee5d5f 100644
--- a/stem/util/__init__.py
+++ b/stem/util/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/conf.py b/stem/util/conf.py
index dff5ace..5691b2a 100644
--- a/stem/util/conf.py
+++ b/stem/util/conf.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/connection.py b/stem/util/connection.py
index a375a17..ba45c8d 100644
--- a/stem/util/connection.py
+++ b/stem/util/connection.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/enum.py b/stem/util/enum.py
index e6b62c8..958a80e 100644
--- a/stem/util/enum.py
+++ b/stem/util/enum.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/log.py b/stem/util/log.py
index fcf80ea..adcdc41 100644
--- a/stem/util/log.py
+++ b/stem/util/log.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/proc.py b/stem/util/proc.py
index 0a310bf..ad24bc8 100644
--- a/stem/util/proc.py
+++ b/stem/util/proc.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/str_tools.py b/stem/util/str_tools.py
index 6d59303..0fbdf38 100644
--- a/stem/util/str_tools.py
+++ b/stem/util/str_tools.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/system.py b/stem/util/system.py
index 600ab49..c1db6d0 100644
--- a/stem/util/system.py
+++ b/stem/util/system.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/term.py b/stem/util/term.py
index 1940b9e..895c4e9 100644
--- a/stem/util/term.py
+++ b/stem/util/term.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/test_tools.py b/stem/util/test_tools.py
index 21adc9a..3b11713 100644
--- a/stem/util/test_tools.py
+++ b/stem/util/test_tools.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/util/tor_tools.py b/stem/util/tor_tools.py
index 7062c77..424797b 100644
--- a/stem/util/tor_tools.py
+++ b/stem/util/tor_tools.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/stem/version.py b/stem/version.py
index 22a67b6..37232c3 100644
--- a/stem/version.py
+++ b/stem/version.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/__init__.py b/test/__init__.py
index 205dfa0..7ab0853 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/arguments.py b/test/arguments.py
index fb01f4d..4ecd3bb 100644
--- a/test/arguments.py
+++ b/test/arguments.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2016, Damian Johnson and The Tor Project
+# Copyright 2015-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/mocking.py b/test/mocking.py
index cb576d8..0d9e6f0 100644
--- a/test/mocking.py
+++ b/test/mocking.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/network.py b/test/network.py
index 1156c5c..7a04efd 100644
--- a/test/network.py
+++ b/test/network.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/output.py b/test/output.py
index c9a2116..82eb358 100644
--- a/test/output.py
+++ b/test/output.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/runner.py b/test/runner.py
index fa65a72..ff1da66 100644
--- a/test/runner.py
+++ b/test/runner.py
@@ -1,4 +1,4 @@
-# Copyright 2011-2016, Damian Johnson and The Tor Project
+# Copyright 2011-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/test/util.py b/test/util.py
index d62a080..482677e 100644
--- a/test/util.py
+++ b/test/util.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2016, Damian Johnson and The Tor Project
+# Copyright 2012-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 """
diff --git a/tor-prompt b/tor-prompt
index bf2c00a..1919ddc 100755
--- a/tor-prompt
+++ b/tor-prompt
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright 2014-2016, Damian Johnson and The Tor Project
+# Copyright 2014-2017, Damian Johnson and The Tor Project
 # See LICENSE for licensing information
 
 import stem.interpreter





More information about the tor-commits mailing list