diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-03-16 05:44:20 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-03-16 05:44:20 +0000 |
| commit | 2fbfe58f173506bfc2b6caa3b8f967708b11483e (patch) | |
| tree | 8ccbff551c9c3b8426b3bc86cb57ccbab32a1c68 | |
| parent | Handle null bounding boxes (diff) | |
| download | inkscape-2fbfe58f173506bfc2b6caa3b8f967708b11483e.tar.gz inkscape-2fbfe58f173506bfc2b6caa3b8f967708b11483e.zip | |
typos
(bzr r2671)
| -rwxr-xr-x | share/extensions/perspective.py | 2 | ||||
| -rwxr-xr-x | share/extensions/summersnight.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/perspective.py b/share/extensions/perspective.py index 7fab641ab..7f95ea227 100755 --- a/share/extensions/perspective.py +++ b/share/extensions/perspective.py @@ -46,7 +46,7 @@ class Project(inkex.Effect): inkex.Effect.__init__(self) def effect(self): if len(self.options.ids) < 2: - inkex.debug("Requires two selected paths. The second must be exctly four nodes long.") + inkex.debug("Requires two selected paths. The second must be exactly four nodes long.") exit() #obj is selected second diff --git a/share/extensions/summersnight.py b/share/extensions/summersnight.py index 5d0fc5ae5..af660d9d9 100755 --- a/share/extensions/summersnight.py +++ b/share/extensions/summersnight.py @@ -25,7 +25,7 @@ class Project(inkex.Effect): inkex.Effect.__init__(self) def effect(self): if len(self.options.ids) < 2: - inkex.debug("Requires two selected paths. The second must be exctly four nodes long.") + inkex.debug("Requires two selected paths. The second must be exactly four nodes long.") exit() #obj is selected second |
