Fetch the NT_ARM_TLS register set for native FreeBSD/arm processes.
[binutils-gdb.git] / gdb / gdbcopyright.py
index 9526eac4e20382ff694f444685a0320ebbb70592..1e38036204d1dc5a5b193647bb66cce9670de2ac 100644 (file)
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+
 def copyright(tool, description):
     # Search the tool source itself for the correct copyright years.
-    with open(tool, 'r') as f:
+    with open(tool, "r") as f:
         for line in f:
-            if line.startswith('# Copyright (C) '):
+            if line.startswith("# Copyright (C) "):
                 dateline = line[1:].strip()
                 break
     return f"""/* *INDENT-OFF* */ /* THIS FILE IS GENERATED -*- buffer-read-only: t -*- */