diff --git a/python/pcb.py b/python/pcb.py
index cdba5a833348dad8d11647307016c8640f97752d..d904791908f3196fa3675b1f3b59403e21c626a5 100755
--- a/python/pcb.py
+++ b/python/pcb.py
@@ -983,7 +983,7 @@ class PCB:
       self.width = self.width+dx
       self.height = self.height+dy
    def text(self,str,x,y,line=0.01,color=White):
-      self.labels = add(self.labels,text('pcb.py',x+.17,V3.y,line=line,color=color).shape)
+      self.labels = add(self.labels,text(str,x,y,line=line,color=color).shape)
 
 class point:
    def __init__(self,x,y,z=0):