diff options
| -rw-r--r-- | embroider.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/embroider.py b/embroider.py index 9d9f33fc..df6717b6 100644 --- a/embroider.py +++ b/embroider.py @@ -59,7 +59,7 @@ class EmbroideryElement(object): value = self.node.get("embroider_" + param, "").strip() if not value: - value = getattr(self.options, param, None) + value = getattr(self.options, param, default) return value @@ -586,6 +586,8 @@ class AutoFill(Fill): return patches def to_patches(self, last_patch): + print >> dbg, "autofill" + patches = [] if last_patch is None: |
