diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2015-09-13 17:09:56 +0000 |
|---|---|---|
| committer | Krzysztof Kosiński <tweenk.pl@gmail.com> | 2015-09-13 17:09:56 +0000 |
| commit | 1245fa37694b8cce14639bfc9b016aa4bd23776c (patch) | |
| tree | c049d1528abbd5643b46a6460d1b3bdff705e748 /share/extensions/hpgl_decoder.py | |
| parent | Clean up the executable bits for extensions (diff) | |
| download | inkscape-1245fa37694b8cce14639bfc9b016aa4bd23776c.tar.gz inkscape-1245fa37694b8cce14639bfc9b016aa4bd23776c.zip | |
Second round of extension executable bit cleanup.
Add/remove executable bits and shebangs as appropriate.
The extension entry point should be executable, while
Python files that contain libraries and are not entry points
should not be executable. Shebang lines should only be
present in executable files.
(bzr r14362)
Diffstat (limited to 'share/extensions/hpgl_decoder.py')
| -rw-r--r-- | share/extensions/hpgl_decoder.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/share/extensions/hpgl_decoder.py b/share/extensions/hpgl_decoder.py index cd900202b..a54a81e81 100644 --- a/share/extensions/hpgl_decoder.py +++ b/share/extensions/hpgl_decoder.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # coding=utf-8 ''' Copyright (C) 2013 Sebastian Wüst, sebi@timewaster.de @@ -100,4 +99,4 @@ class hpglDecoder: self.oldCoordinates = (float(parameters[-2]), float(parameters[-1])) -# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99
\ No newline at end of file +# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99 |
