diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-04-06 08:26:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-06 08:26:14 +0200 |
| commit | 36ab53301d06ed082a9e0b7a94eecec00454eef7 (patch) | |
| tree | f2941d311e59fc33bc7de5ad0e47c3fa5f89027a /lib | |
| parent | cbdb5129f77f8536173bc4d725c5e66018044d6a (diff) | |
remove empty d error (#2818)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/elements/element.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/elements/element.py b/lib/elements/element.py index 4ea909ac..c9d7c377 100644 --- a/lib/elements/element.py +++ b/lib/elements/element.py @@ -415,9 +415,6 @@ class EmbroideryElement(object): else: d = self.node.get("d", "") - if not d: - self.fatal(_("Object %(id)s has an empty 'd' attribute. Please delete this object from your document.") % dict(id=self.node.get("id"))) - return inkex.Path(d).to_superpath() @cache |
