diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2014-10-07 22:44:08 -0400 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2014-10-07 22:44:08 -0400 |
commit | af97dcf2a8200d9319e20d2789dbb0baa0611ba5 (patch) | |
tree | 215eed772745010141b3d50a1962720caf3d0196 /gerber/utils.py | |
parent | 5ff44efbcfca5316796a1ea0191b2a92894a59ee (diff) | |
download | gerbonara-af97dcf2a8200d9319e20d2789dbb0baa0611ba5.tar.gz gerbonara-af97dcf2a8200d9319e20d2789dbb0baa0611ba5.tar.bz2 gerbonara-af97dcf2a8200d9319e20d2789dbb0baa0611ba5.zip |
fix excellon render
Diffstat (limited to 'gerber/utils.py')
-rw-r--r-- | gerber/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerber/utils.py b/gerber/utils.py index 1721a7d..fce6369 100644 --- a/gerber/utils.py +++ b/gerber/utils.py @@ -113,7 +113,7 @@ def write_gerber_value(value, format=(2, 5), zero_suppression='trailing'): # Edge case...
if value == 0:
return '00'
-
+
# negative sign affects padding, so deal with it at the end...
negative = value < 0.0
if negative:
|