Updated code to match new rules
[integration/test.git] / tools / pcep_updater / updater.py
index a126ffe7c460452b26dc38bd25f6166c5e0674ed..aa711eac2b1f7d25640fdd48a0f50cc95f3dde15 100644 (file)
@@ -31,12 +31,6 @@ But that may not be true for more mature implementation.
 # terms of the Eclipse Public License v1.0 which accompanies this distribution,
 # and is available at http://www.eclipse.org/legal/epl-v10.html
 
-__author__ = "Vratko Polak"
-__copyright__ = "Copyright(c) 2015, Cisco Systems, Inc."
-__license__ = "Eclipse Public License v1.0"
-__email__ = "vrpolak@cisco.com"
-
-
 import argparse
 import collections  # For deque and Counter.
 import ipaddr
@@ -49,6 +43,12 @@ except ImportError:  # Python 2.6 does not have Counter in collections.
 import AuthStandalone
 
 
+__author__ = "Vratko Polak"
+__copyright__ = "Copyright(c) 2015, Cisco Systems, Inc."
+__license__ = "Eclipse Public License v1.0"
+__email__ = "vrpolak@cisco.com"
+
+
 def str2bool(text):
     """Utility converter, based on http://stackoverflow.com/a/19227287"""
     return text.lower() in ("yes", "true", "y", "t", "1")