summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkihiro Motoki <motoki@da.jp.nec.com>2015-03-23 15:40:06 +0900
committerAkihiro Motoki <motoki@da.jp.nec.com>2015-03-23 15:44:08 +0900
commited46ba9a45e4d0fe5741f2521e6ad3fad567e066 (patch)
tree63ce851de3d2e5056a32bd013eca44908d6fd7a0
parente2ca29134cb266ada2e171f3f654a22860c40aec (diff)
downloadpython-neutronclient-ed46ba9a45e4d0fe5741f2521e6ad3fad567e066.tar.gz
Remove author tag
We have a hacking rule H105 (Don't use author tags) now and the same policy has been applied to other neutron repos. Change-Id: I1a1a35bbfaad6bbe229b9b12cf6cfb405b6ed516
-rw-r--r--neutronclient/neutron/v2_0/fw/firewall.py2
-rw-r--r--neutronclient/neutron/v2_0/fw/firewallpolicy.py2
-rw-r--r--neutronclient/neutron/v2_0/fw/firewallrule.py2
-rw-r--r--neutronclient/neutron/v2_0/lb/healthmonitor.py2
-rw-r--r--neutronclient/neutron/v2_0/lb/member.py2
-rw-r--r--neutronclient/neutron/v2_0/lb/pool.py2
-rw-r--r--neutronclient/neutron/v2_0/lb/v2/healthmonitor.py3
-rw-r--r--neutronclient/neutron/v2_0/lb/v2/listener.py2
-rw-r--r--neutronclient/neutron/v2_0/lb/v2/loadbalancer.py2
-rw-r--r--neutronclient/neutron/v2_0/lb/v2/member.py3
-rw-r--r--neutronclient/neutron/v2_0/lb/v2/pool.py3
-rw-r--r--neutronclient/neutron/v2_0/lb/vip.py2
-rw-r--r--neutronclient/neutron/v2_0/metering.py2
-rw-r--r--neutronclient/neutron/v2_0/netpartition.py1
-rw-r--r--neutronclient/neutron/v2_0/networkprofile.py3
-rw-r--r--neutronclient/neutron/v2_0/policyprofile.py2
-rw-r--r--neutronclient/neutron/v2_0/vpn/ikepolicy.py2
-rw-r--r--neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py2
-rw-r--r--neutronclient/neutron/v2_0/vpn/ipsecpolicy.py1
-rw-r--r--neutronclient/neutron/v2_0/vpn/utils.py2
-rw-r--r--neutronclient/neutron/v2_0/vpn/vpnservice.py2
-rw-r--r--neutronclient/tests/unit/fw/test_cli20_firewall.py2
-rw-r--r--neutronclient/tests/unit/fw/test_cli20_firewallpolicy.py2
-rw-r--r--neutronclient/tests/unit/fw/test_cli20_firewallrule.py2
-rw-r--r--neutronclient/tests/unit/lb/test_cli20_healthmonitor.py2
-rw-r--r--neutronclient/tests/unit/lb/test_cli20_member.py2
-rw-r--r--neutronclient/tests/unit/lb/test_cli20_pool.py2
-rw-r--r--neutronclient/tests/unit/lb/test_cli20_vip.py2
-rw-r--r--neutronclient/tests/unit/lb/v2/test_cli20_healthmonitor.py2
-rw-r--r--neutronclient/tests/unit/lb/v2/test_cli20_listener.py2
-rw-r--r--neutronclient/tests/unit/lb/v2/test_cli20_loadbalancer.py2
-rw-r--r--neutronclient/tests/unit/lb/v2/test_cli20_member.py2
-rw-r--r--neutronclient/tests/unit/lb/v2/test_cli20_pool.py2
-rw-r--r--neutronclient/tests/unit/test_cli20_agentschedulers.py2
-rw-r--r--neutronclient/tests/unit/test_cli20_credential.py2
-rw-r--r--neutronclient/tests/unit/test_cli20_metering.py2
-rw-r--r--neutronclient/tests/unit/test_cli20_networkprofile.py2
-rw-r--r--neutronclient/tests/unit/test_cli20_nuage_netpartition.py1
-rw-r--r--neutronclient/tests/unit/test_cli20_policyprofile.py2
-rw-r--r--neutronclient/tests/unit/test_cli20_servicetype.py2
-rw-r--r--neutronclient/tests/unit/test_command_meta.py1
-rw-r--r--neutronclient/tests/unit/vpn/test_cli20_ikepolicy.py1
-rw-r--r--neutronclient/tests/unit/vpn/test_cli20_ipsec_site_connection.py1
-rw-r--r--neutronclient/tests/unit/vpn/test_cli20_ipsecpolicy.py1
-rw-r--r--neutronclient/tests/unit/vpn/test_cli20_vpnservice.py1
-rw-r--r--neutronclient/tests/unit/vpn/test_utils.py1
-rw-r--r--neutronclient/version.py1
-rw-r--r--tox.ini3
48 files changed, 1 insertions, 90 deletions
diff --git a/neutronclient/neutron/v2_0/fw/firewall.py b/neutronclient/neutron/v2_0/fw/firewall.py
index 149036a..2a108f5 100644
--- a/neutronclient/neutron/v2_0/fw/firewall.py
+++ b/neutronclient/neutron/v2_0/fw/firewall.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: KC Wang, Big Switch Networks
-#
import argparse
diff --git a/neutronclient/neutron/v2_0/fw/firewallpolicy.py b/neutronclient/neutron/v2_0/fw/firewallpolicy.py
index 32f25eb..410ec47 100644
--- a/neutronclient/neutron/v2_0/fw/firewallpolicy.py
+++ b/neutronclient/neutron/v2_0/fw/firewallpolicy.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: KC Wang, Big Switch Networks
-#
from __future__ import print_function
diff --git a/neutronclient/neutron/v2_0/fw/firewallrule.py b/neutronclient/neutron/v2_0/fw/firewallrule.py
index ecc369b..0df936a 100644
--- a/neutronclient/neutron/v2_0/fw/firewallrule.py
+++ b/neutronclient/neutron/v2_0/fw/firewallrule.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: KC Wang, Big Switch Networks
-#
import argparse
diff --git a/neutronclient/neutron/v2_0/lb/healthmonitor.py b/neutronclient/neutron/v2_0/lb/healthmonitor.py
index 0956fd4..d691ebf 100644
--- a/neutronclient/neutron/v2_0/lb/healthmonitor.py
+++ b/neutronclient/neutron/v2_0/lb/healthmonitor.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
from __future__ import print_function
diff --git a/neutronclient/neutron/v2_0/lb/member.py b/neutronclient/neutron/v2_0/lb/member.py
index 6effb30..472cd05 100644
--- a/neutronclient/neutron/v2_0/lb/member.py
+++ b/neutronclient/neutron/v2_0/lb/member.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
from neutronclient.i18n import _
from neutronclient.neutron import v2_0 as neutronV20
diff --git a/neutronclient/neutron/v2_0/lb/pool.py b/neutronclient/neutron/v2_0/lb/pool.py
index c10f7a8..174b91a 100644
--- a/neutronclient/neutron/v2_0/lb/pool.py
+++ b/neutronclient/neutron/v2_0/lb/pool.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
import six
diff --git a/neutronclient/neutron/v2_0/lb/v2/healthmonitor.py b/neutronclient/neutron/v2_0/lb/v2/healthmonitor.py
index ff1c11e..ac3b2aa 100644
--- a/neutronclient/neutron/v2_0/lb/v2/healthmonitor.py
+++ b/neutronclient/neutron/v2_0/lb/v2/healthmonitor.py
@@ -2,9 +2,6 @@
# Copyright 2014 Blue Box Group, Inc.
# All Rights Reserved
#
-# Author: Ilya Shakhat, Mirantis Inc.
-# Author: Craig Tracey <craigtracey@gmail.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/neutron/v2_0/lb/v2/listener.py b/neutronclient/neutron/v2_0/lb/v2/listener.py
index 6ce9944..e0e9fcb 100644
--- a/neutronclient/neutron/v2_0/lb/v2/listener.py
+++ b/neutronclient/neutron/v2_0/lb/v2/listener.py
@@ -2,8 +2,6 @@
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# All Rights Reserved
#
-# Author: Craig Tracey <craigtracey@gmail.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/neutron/v2_0/lb/v2/loadbalancer.py b/neutronclient/neutron/v2_0/lb/v2/loadbalancer.py
index 49fd134..1bada17 100644
--- a/neutronclient/neutron/v2_0/lb/v2/loadbalancer.py
+++ b/neutronclient/neutron/v2_0/lb/v2/loadbalancer.py
@@ -2,8 +2,6 @@
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# All Rights Reserved
#
-# Author: Craig Tracey <craigtracey@gmail.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/neutron/v2_0/lb/v2/member.py b/neutronclient/neutron/v2_0/lb/v2/member.py
index 4709f65..3fd71c6 100644
--- a/neutronclient/neutron/v2_0/lb/v2/member.py
+++ b/neutronclient/neutron/v2_0/lb/v2/member.py
@@ -3,9 +3,6 @@
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# All Rights Reserved
#
-# Author: Ilya Shakhat, Mirantis Inc.
-# Author: Craig Tracey <craigtracey@gmail.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/neutron/v2_0/lb/v2/pool.py b/neutronclient/neutron/v2_0/lb/v2/pool.py
index 188596f..fd5e03a 100644
--- a/neutronclient/neutron/v2_0/lb/v2/pool.py
+++ b/neutronclient/neutron/v2_0/lb/v2/pool.py
@@ -3,9 +3,6 @@
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# All Rights Reserved
#
-# Author: Ilya Shakhat, Mirantis Inc.
-# Author: Craig Tracey <craigtracey@gmail.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/neutron/v2_0/lb/vip.py b/neutronclient/neutron/v2_0/lb/vip.py
index 3c85d33..59b0c38 100644
--- a/neutronclient/neutron/v2_0/lb/vip.py
+++ b/neutronclient/neutron/v2_0/lb/vip.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
from neutronclient.i18n import _
from neutronclient.neutron import v2_0 as neutronV20
diff --git a/neutronclient/neutron/v2_0/metering.py b/neutronclient/neutron/v2_0/metering.py
index c2649c4..34bf2b6 100644
--- a/neutronclient/neutron/v2_0/metering.py
+++ b/neutronclient/neutron/v2_0/metering.py
@@ -1,7 +1,5 @@
# Copyright (C) 2013 eNovance SAS <licensing@enovance.com>
#
-# Author: Sylvain Afchain <sylvain.afchain@enovance.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/neutron/v2_0/netpartition.py b/neutronclient/neutron/v2_0/netpartition.py
index 4fd0604..260ad09 100644
--- a/neutronclient/neutron/v2_0/netpartition.py
+++ b/neutronclient/neutron/v2_0/netpartition.py
@@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ronak Shah, Nuage Networks, Alcatel-Lucent USA Inc.
from neutronclient.neutron.v2_0 import CreateCommand
from neutronclient.neutron.v2_0 import DeleteCommand
diff --git a/neutronclient/neutron/v2_0/networkprofile.py b/neutronclient/neutron/v2_0/networkprofile.py
index 3450b32..ed85875 100644
--- a/neutronclient/neutron/v2_0/networkprofile.py
+++ b/neutronclient/neutron/v2_0/networkprofile.py
@@ -10,9 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-#@author Abhishek Raut, Cisco Systems
-#@author Sergey Sudakovich, Cisco Systems
-#@author Rudrajit Tapadar, Cisco Systems
from __future__ import print_function
diff --git a/neutronclient/neutron/v2_0/policyprofile.py b/neutronclient/neutron/v2_0/policyprofile.py
index 03fd8af..7ff00db 100644
--- a/neutronclient/neutron/v2_0/policyprofile.py
+++ b/neutronclient/neutron/v2_0/policyprofile.py
@@ -10,8 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-#@author Abhishek Raut, Cisco Systems
-#@author Sergey Sudakovich, Cisco Systems
from __future__ import print_function
diff --git a/neutronclient/neutron/v2_0/vpn/ikepolicy.py b/neutronclient/neutron/v2_0/vpn/ikepolicy.py
index e2f5d28..ea93eda 100644
--- a/neutronclient/neutron/v2_0/vpn/ikepolicy.py
+++ b/neutronclient/neutron/v2_0/vpn/ikepolicy.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett-Packard.
-#
from neutronclient.common import utils
from neutronclient.i18n import _
diff --git a/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py b/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py
index 59d676e..6bf937b 100644
--- a/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py
+++ b/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett-Packard.
-#
from oslo.serialization import jsonutils
diff --git a/neutronclient/neutron/v2_0/vpn/ipsecpolicy.py b/neutronclient/neutron/v2_0/vpn/ipsecpolicy.py
index cade641..a1b3db9 100644
--- a/neutronclient/neutron/v2_0/vpn/ipsecpolicy.py
+++ b/neutronclient/neutron/v2_0/vpn/ipsecpolicy.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett-Packard.
from neutronclient.common import utils
from neutronclient.i18n import _
diff --git a/neutronclient/neutron/v2_0/vpn/utils.py b/neutronclient/neutron/v2_0/vpn/utils.py
index 74fbeef..0159e76 100644
--- a/neutronclient/neutron/v2_0/vpn/utils.py
+++ b/neutronclient/neutron/v2_0/vpn/utils.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett-Packard.
-#
"""VPN Utilities and helper functions."""
diff --git a/neutronclient/neutron/v2_0/vpn/vpnservice.py b/neutronclient/neutron/v2_0/vpn/vpnservice.py
index cf89264..88915f1 100644
--- a/neutronclient/neutron/v2_0/vpn/vpnservice.py
+++ b/neutronclient/neutron/v2_0/vpn/vpnservice.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett-Packard.
-#
from neutronclient.i18n import _
from neutronclient.neutron import v2_0 as neutronv20
diff --git a/neutronclient/tests/unit/fw/test_cli20_firewall.py b/neutronclient/tests/unit/fw/test_cli20_firewall.py
index 3b6288b..c7872a8 100644
--- a/neutronclient/tests/unit/fw/test_cli20_firewall.py
+++ b/neutronclient/tests/unit/fw/test_cli20_firewall.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: KC Wang, Big Switch Networks Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/fw/test_cli20_firewallpolicy.py b/neutronclient/tests/unit/fw/test_cli20_firewallpolicy.py
index a8786db..243843a 100644
--- a/neutronclient/tests/unit/fw/test_cli20_firewallpolicy.py
+++ b/neutronclient/tests/unit/fw/test_cli20_firewallpolicy.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: KC Wang, Big Switch Networks Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/fw/test_cli20_firewallrule.py b/neutronclient/tests/unit/fw/test_cli20_firewallrule.py
index e302d65..72f8028 100644
--- a/neutronclient/tests/unit/fw/test_cli20_firewallrule.py
+++ b/neutronclient/tests/unit/fw/test_cli20_firewallrule.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: KC Wang, Big Switch Networks Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/lb/test_cli20_healthmonitor.py b/neutronclient/tests/unit/lb/test_cli20_healthmonitor.py
index 2415a17..300fa67 100644
--- a/neutronclient/tests/unit/lb/test_cli20_healthmonitor.py
+++ b/neutronclient/tests/unit/lb/test_cli20_healthmonitor.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/lb/test_cli20_member.py b/neutronclient/tests/unit/lb/test_cli20_member.py
index d793d7e..731459d 100644
--- a/neutronclient/tests/unit/lb/test_cli20_member.py
+++ b/neutronclient/tests/unit/lb/test_cli20_member.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/lb/test_cli20_pool.py b/neutronclient/tests/unit/lb/test_cli20_pool.py
index c293fa8..dc9f6b5 100644
--- a/neutronclient/tests/unit/lb/test_cli20_pool.py
+++ b/neutronclient/tests/unit/lb/test_cli20_pool.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/lb/test_cli20_vip.py b/neutronclient/tests/unit/lb/test_cli20_vip.py
index fb50141..a322903 100644
--- a/neutronclient/tests/unit/lb/test_cli20_vip.py
+++ b/neutronclient/tests/unit/lb/test_cli20_vip.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ilya Shakhat, Mirantis Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/lb/v2/test_cli20_healthmonitor.py b/neutronclient/tests/unit/lb/v2/test_cli20_healthmonitor.py
index 96f96a6..5907000 100644
--- a/neutronclient/tests/unit/lb/v2/test_cli20_healthmonitor.py
+++ b/neutronclient/tests/unit/lb/v2/test_cli20_healthmonitor.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Craig Tracey <craigtracey@gmail.com>
-#
import sys
diff --git a/neutronclient/tests/unit/lb/v2/test_cli20_listener.py b/neutronclient/tests/unit/lb/v2/test_cli20_listener.py
index ea421a8..4a70fd6 100644
--- a/neutronclient/tests/unit/lb/v2/test_cli20_listener.py
+++ b/neutronclient/tests/unit/lb/v2/test_cli20_listener.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Craig Tracey <craigtracey@gmail.com>
-#
import sys
diff --git a/neutronclient/tests/unit/lb/v2/test_cli20_loadbalancer.py b/neutronclient/tests/unit/lb/v2/test_cli20_loadbalancer.py
index 11bed03..3f34b3c 100644
--- a/neutronclient/tests/unit/lb/v2/test_cli20_loadbalancer.py
+++ b/neutronclient/tests/unit/lb/v2/test_cli20_loadbalancer.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Craig Tracey <craigtracey@gmail.com>
-#
import sys
diff --git a/neutronclient/tests/unit/lb/v2/test_cli20_member.py b/neutronclient/tests/unit/lb/v2/test_cli20_member.py
index 2adb036..4058f47 100644
--- a/neutronclient/tests/unit/lb/v2/test_cli20_member.py
+++ b/neutronclient/tests/unit/lb/v2/test_cli20_member.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Craig Tracey <craigtracey@gmail.com>
-#
import sys
diff --git a/neutronclient/tests/unit/lb/v2/test_cli20_pool.py b/neutronclient/tests/unit/lb/v2/test_cli20_pool.py
index 94defe8..48630f8 100644
--- a/neutronclient/tests/unit/lb/v2/test_cli20_pool.py
+++ b/neutronclient/tests/unit/lb/v2/test_cli20_pool.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Craig Tracey <craigtracey@gmail.com>
-#
import sys
diff --git a/neutronclient/tests/unit/test_cli20_agentschedulers.py b/neutronclient/tests/unit/test_cli20_agentschedulers.py
index 4c8992e..8085581 100644
--- a/neutronclient/tests/unit/test_cli20_agentschedulers.py
+++ b/neutronclient/tests/unit/test_cli20_agentschedulers.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Oleg Bondarev, Mirantis Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/test_cli20_credential.py b/neutronclient/tests/unit/test_cli20_credential.py
index 53e8ecc..4f4a1d3 100644
--- a/neutronclient/tests/unit/test_cli20_credential.py
+++ b/neutronclient/tests/unit/test_cli20_credential.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Kyle Mestery, Cisco Systems, Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/test_cli20_metering.py b/neutronclient/tests/unit/test_cli20_metering.py
index 995c29b..9be645f 100644
--- a/neutronclient/tests/unit/test_cli20_metering.py
+++ b/neutronclient/tests/unit/test_cli20_metering.py
@@ -1,7 +1,5 @@
# Copyright (C) 2013 eNovance SAS <licensing@enovance.com>
#
-# Author: Sylvain Afchain <sylvain.afchain@enovance.com>
-#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
diff --git a/neutronclient/tests/unit/test_cli20_networkprofile.py b/neutronclient/tests/unit/test_cli20_networkprofile.py
index 8b955ed..c5a7353 100644
--- a/neutronclient/tests/unit/test_cli20_networkprofile.py
+++ b/neutronclient/tests/unit/test_cli20_networkprofile.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Kyle Mestery, Cisco Systems, Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/test_cli20_nuage_netpartition.py b/neutronclient/tests/unit/test_cli20_nuage_netpartition.py
index b62d296..18f9d3a 100644
--- a/neutronclient/tests/unit/test_cli20_nuage_netpartition.py
+++ b/neutronclient/tests/unit/test_cli20_nuage_netpartition.py
@@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Ronak Shah, Nuage Networks, Alcatel-Lucent USA Inc.
import sys
diff --git a/neutronclient/tests/unit/test_cli20_policyprofile.py b/neutronclient/tests/unit/test_cli20_policyprofile.py
index 791b840..94cbf2c 100644
--- a/neutronclient/tests/unit/test_cli20_policyprofile.py
+++ b/neutronclient/tests/unit/test_cli20_policyprofile.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Kyle Mestery, Cisco Systems, Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/test_cli20_servicetype.py b/neutronclient/tests/unit/test_cli20_servicetype.py
index 0429a1a..5ee4bd7 100644
--- a/neutronclient/tests/unit/test_cli20_servicetype.py
+++ b/neutronclient/tests/unit/test_cli20_servicetype.py
@@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Eugene Nikanorov, Mirantis Inc.
-#
import sys
diff --git a/neutronclient/tests/unit/test_command_meta.py b/neutronclient/tests/unit/test_command_meta.py
index be50ab8..9b1c721 100644
--- a/neutronclient/tests/unit/test_command_meta.py
+++ b/neutronclient/tests/unit/test_command_meta.py
@@ -16,7 +16,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Isaku Yamahata, Intel
import logging
diff --git a/neutronclient/tests/unit/vpn/test_cli20_ikepolicy.py b/neutronclient/tests/unit/vpn/test_cli20_ikepolicy.py
index fc5a1a4..d21fb14 100644
--- a/neutronclient/tests/unit/vpn/test_cli20_ikepolicy.py
+++ b/neutronclient/tests/unit/vpn/test_cli20_ikepolicy.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett Packard.
import sys
diff --git a/neutronclient/tests/unit/vpn/test_cli20_ipsec_site_connection.py b/neutronclient/tests/unit/vpn/test_cli20_ipsec_site_connection.py
index 077db1e..afcd04b 100644
--- a/neutronclient/tests/unit/vpn/test_cli20_ipsec_site_connection.py
+++ b/neutronclient/tests/unit/vpn/test_cli20_ipsec_site_connection.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett Packard.
import sys
diff --git a/neutronclient/tests/unit/vpn/test_cli20_ipsecpolicy.py b/neutronclient/tests/unit/vpn/test_cli20_ipsecpolicy.py
index ca413a0..7d3d0ba 100644
--- a/neutronclient/tests/unit/vpn/test_cli20_ipsecpolicy.py
+++ b/neutronclient/tests/unit/vpn/test_cli20_ipsecpolicy.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett Packard.
import sys
diff --git a/neutronclient/tests/unit/vpn/test_cli20_vpnservice.py b/neutronclient/tests/unit/vpn/test_cli20_vpnservice.py
index 8afd081..a3cab0f 100644
--- a/neutronclient/tests/unit/vpn/test_cli20_vpnservice.py
+++ b/neutronclient/tests/unit/vpn/test_cli20_vpnservice.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett Packard.
import sys
diff --git a/neutronclient/tests/unit/vpn/test_utils.py b/neutronclient/tests/unit/vpn/test_utils.py
index 7b815a5..c39f7ce 100644
--- a/neutronclient/tests/unit/vpn/test_utils.py
+++ b/neutronclient/tests/unit/vpn/test_utils.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Swaminathan Vasudevan, Hewlett Packard.
import testtools
diff --git a/neutronclient/version.py b/neutronclient/version.py
index 1899900..4178a09 100644
--- a/neutronclient/version.py
+++ b/neutronclient/version.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-# @author: Carl Baldwin, Hewlett-Packard
import pbr.version
diff --git a/tox.ini b/tox.ini
index 94ab882..e592024 100644
--- a/tox.ini
+++ b/tox.ini
@@ -41,8 +41,7 @@ downloadcache = ~/cache/pip
#
# TODO Fix the following rules from hacking 0.9.x
# E265 block comment should start with '# '
-# H105 Don't use author tags
# H405 multi line docstring summary not separated with an empty line
-ignore = E125,E265,H105,H405
+ignore = E125,E265,H405
show-source = true
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools