aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/autogen/add_suite_tag.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/autogen/add_suite_tag.py')
-rwxr-xr-xresources/libraries/python/autogen/add_suite_tag.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/resources/libraries/python/autogen/add_suite_tag.py b/resources/libraries/python/autogen/add_suite_tag.py
index 3e07316b64..63bfa1a385 100755
--- a/resources/libraries/python/autogen/add_suite_tag.py
+++ b/resources/libraries/python/autogen/add_suite_tag.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-# Copyright (c) 2019 Cisco and/or its affiliates.
+# Copyright (c) 2020 Cisco and/or its affiliates.
# 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:
@@ -20,8 +20,6 @@ import sys
from io import open
from glob import glob
-from resources.libraries.python.autogen.Regenerator import Regenerator
-
def edit(text, suite_tag):
"""Return the edited text.
@@ -49,7 +47,7 @@ def edit(text, suite_tag):
line_previous = line
lines_out.append(line)
line = next(lines_in)
- if u"|" == line:
+ if line == u"|":
break
# All tags are written, we remember the last one.
line_suite = u"| ... | " + suite_tag