Skip to content

Commit

Permalink
change all scripts' shebangs to use python3
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Dec 5, 2019
1 parent 35f2a65 commit cfc5b44
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion MetaTools/buildTableList.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

import sys
import os
Expand Down
2 changes: 1 addition & 1 deletion MetaTools/buildUCD.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""
Tools to parse data files from the Unicode Character Database.
"""
Expand Down
2 changes: 1 addition & 1 deletion MetaTools/roundTrip.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

"""usage: ttroundtrip [options] font1 ... fontN
Expand Down
2 changes: 1 addition & 1 deletion Snippets/cmap-format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

# Sample script to convert legacy cmap subtables to format-4
# subtables. Note that this is rarely what one needs. You
Expand Down
2 changes: 1 addition & 1 deletion Snippets/fix-dflt-langsys.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import argparse
import logging
Expand Down
2 changes: 1 addition & 1 deletion Snippets/interpolate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

# Illustrates how a fonttools script can construct variable fonts.
#
Expand Down
2 changes: 1 addition & 1 deletion Snippets/layout-features.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

from fontTools.misc.py23 import *
from fontTools.ttLib import TTFont
Expand Down
2 changes: 1 addition & 1 deletion Snippets/otf2ttf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import argparse
import logging
Expand Down
2 changes: 1 addition & 1 deletion Snippets/rename-fonts.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""Script to add a suffix to all family names in the input font's `name` table,
and to optionally rename the output files with the given suffix.
Expand Down
2 changes: 1 addition & 1 deletion Snippets/subset-fpgm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

from fontTools.misc.py23 import *
from fontTools.ttLib import TTFont
Expand Down
2 changes: 1 addition & 1 deletion Snippets/svg2glif.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
""" Convert SVG paths to UFO glyphs. """


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

from __future__ import print_function
import io
Expand Down

0 comments on commit cfc5b44

Please sign in to comment.