diff options
-rwxr-xr-x | lab/svg2ttf.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lab/svg2ttf.py b/lab/svg2ttf.py index bd2425a..3ad775a 100755 --- a/lab/svg2ttf.py +++ b/lab/svg2ttf.py @@ -1,19 +1,4 @@ #!/usr/bin/fontforge -script -# -# Copyright (c) 2017 GNU Developers -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. import sys import os.path @@ -87,5 +72,3 @@ if __name__ == '__main__': main(sys.argv[1]) else: sys.stderr.write("\nUsage: %s something.json\n" % sys.argv[0]) - -# vim: set filetype=python: |