diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5e29a4846ea26d48637ce99e46e52b124fc4abb7
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,22 @@
+notifications:
+    email:
+        recipients:
+            - dilawar.s.rajput@gmail.com
+            - upi.bhalla@gmail.com
+            - hrani@ncbs.res.in
+
+
+install:
+    - wget http://download.opensuse.org/repositories/home:moose/xUbuntu_12.04/Release.key
+    - sudo apt-key add - < Release.key  
+    - sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/moose/xUbuntu_12.04/ /' >> /etc/apt/sources.list.d/moose.list"
+    - sudo apt-get -y update
+    - sudo apt-get install python3
+    - sudo apt-get -y install moose
+
+script:
+    - # Making sure no python incompatible file is added.
+    - python -m compileall -q .
+    - python -c 'import moose'
+    - python -c 'import moogli'
+    - # More tests here for gui.
diff --git a/PlotWidgetContainer.py b/PlotWidgetContainer.py
index ce9b6b83f699ec75a8807183b832fbd862699f7d..f42e0a87e27ba9fe891b53344957d2f43a29b402 100644
--- a/PlotWidgetContainer.py
+++ b/PlotWidgetContainer.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+
 # -*- coding: utf-8 -*-
 from __future__ import print_function
 
diff --git a/README.md b/README.md
index 1ec6a410130194d05080e2f779797c4fc1321813..14d58668b3f9e2db43b28bf47905118612023d91 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,3 @@
+[![Build Status](https://travis-ci.org/BhallaLab/moose-gui.svg?branch=master)](https://travis-ci.org/BhallaLab/moose-gui)
+
 # moose-gui
diff --git a/RunWidget.py b/RunWidget.py
index 0be526f6bb926783c543abe13661e5458a9a951a..dd78a2f94d5b052094b3bfd32085840b4094068e 100644
--- a/RunWidget.py
+++ b/RunWidget.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+
 # -*- coding: utf-8 -*-
 from __future__ import print_function
 
diff --git a/SettingsDialog.py b/SettingsDialog.py
index f1a6cad6619bfe2fb130c5d8f8c5a28cba6bb595..bd6ce56beab7c1bc3f028866e139f29a3eac374e 100644
--- a/SettingsDialog.py
+++ b/SettingsDialog.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+
 # -*- coding: utf-8 -*-
 from __future__ import print_function
 
diff --git a/mload.py b/mload.py
index 916a33c4fa3e392a661cd702606cbed6be926f5a..b91e2888592a75138554a28521cb0f1fea98c218 100644
--- a/mload.py
+++ b/mload.py
@@ -129,11 +129,11 @@ def loadFile(filename, target, solver="gsl", merge=True):
     if not istext:
         print 'Cannot handle any binary formats yet'
         return None
-    parent, child = posixpath.split(target)
-    p = moose.Neutral(parent)
-    if not merge and p.path != '/':
-        for ch in p.children:
-            moose.delete(ch)
+    # parent, child = posixpath.split(target)
+    # p = moose.Neutral(parent)
+    # if not merge and p.path != '/':
+    #     for ch in p.children:
+    #         moose.delete(ch)
     try:
         modeltype = mtypes.getType(filename)
         subtype = mtypes.getSubtype(filename, modeltype)
diff --git a/plugins/NeuroKit.py b/plugins/NeuroKit.py
index a1fe476c0b11683264cbf68510b747ca62e72d86..00785c77f097ad2f2a531e912af3273a99493f1d 100644
--- a/plugins/NeuroKit.py
+++ b/plugins/NeuroKit.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+
 # -*- coding: utf-8 -*-
 
 """
diff --git a/plugins/NeuroKitEditor.py b/plugins/NeuroKitEditor.py
index a29b3edb025ecfdf632fd49219e83348e9384d85..e0f9c810efba36e374d6caf1a0fcf9e66343e89c 100644
--- a/plugins/NeuroKitEditor.py
+++ b/plugins/NeuroKitEditor.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+
 # -*- coding: utf-8 -*-
 
 """
diff --git a/plugins/kkit.py b/plugins/kkit.py
index a43aea67aa7b0c5984d74f1740a581b90e301136..5b79ea6fa2514f7fa9968b412d210f904cfdf03f 100644
--- a/plugins/kkit.py
+++ b/plugins/kkit.py
@@ -2,8 +2,9 @@ import sys
 from PyQt4 import QtGui, QtCore, Qt
 from default import *
 from moose import *
-from moose.genesis import write
+#from moose.genesis import write
 from moose import SBML
+from moose.genesis.writeKkit import mooseWriteKkit
 #sys.path.append('plugins')
 from mplugin import *
 from kkitUtil import *
@@ -113,7 +114,7 @@ class KkitPlugin(MoosePlugin):
                         v['y'] = -yprime
 
                 filename = filename
-                writeerror = write(self.modelRoot,str(filename),self.coOrdinates)
+                writeerror = mooseWriteKkit(self.modelRoot,str(filename),self.coOrdinates)
                 if writeerror == False:
                     QtGui.QMessageBox.information(None,'Could not save the Model','\nCheck the file')
                 else:
diff --git a/plugins/kkitOrdinateUtil.py b/plugins/kkitOrdinateUtil.py
index 01bcafd40975b80a454b73ba7992ae86b2979724..a4ac1bc2cd425fc4d47b1bc8c40fd39f35fb52fe 100644
--- a/plugins/kkitOrdinateUtil.py
+++ b/plugins/kkitOrdinateUtil.py
@@ -218,12 +218,12 @@ def autoCoordinates(meshEntry,srcdesConnection):
             else:
                 for items in (items for items in out ):
                     G.add_edge(element(items[0]).path,inn.path)
-    
+    position = nx.spring_layout(G)
     #nx.draw(G,pos=nx.spring_layout(G))
     #position = nx.spring_layout(G)
     #import matplotlib.pyplot as plt
-    #plt.savefig('/home/harsha/Trash/Trash_SBML/test.png')
-    position = nx.graphviz_layout(G, prog = 'dot')
+    #plt.savefig('test.png')
+    #position = nx.graphviz_layout(G, prog = 'dot')
     #agraph = nx.to_agraph(G)
     #agraph.draw("test.png", format = 'png', prog = 'dot')
     xcord = []
diff --git a/plugins/kkitUtil.py b/plugins/kkitUtil.py
index 137daf80fc6155f43997e01f8e698c28d9fd1bc3..a83a496c320e9e9ddb578e8e4665ad60036c5e73 100644
--- a/plugins/kkitUtil.py
+++ b/plugins/kkitUtil.py
@@ -137,6 +137,7 @@ def calculateChildBoundingRect(compt):
     ypos = []
     xpos = []
     for l in compt.childItems():
+
         ''' All the children including pool,reac,enz,polygon(arrow),table '''
         if not isinstance(l,QtSvg.QGraphicsSvgItem):
             if (not isinstance(l,QtGui.QGraphicsPolygonItem)):
@@ -159,4 +160,5 @@ def calculateChildBoundingRect(compt):
         calculateRectcompt = QtCore.QRectF(min(xpos),min(ypos),(max(xpos)-min(xpos)),(max(ypos)-min(ypos)))
     else:
         calculateRectcompt = compt.rect()
-    return calculateRectcompt
\ No newline at end of file
+        
+    return calculateRectcompt
diff --git a/plugins/modelBuild.py b/plugins/modelBuild.py
index 4351ab281159692051f916b73c794ebf8f60a75a..471d8e9eaf63953343cb3a7e968e5e2135e27860 100644
--- a/plugins/modelBuild.py
+++ b/plugins/modelBuild.py
@@ -47,7 +47,7 @@ def checkCreate(scene,view,modelpath,mobj,string,ret_string,num,event_pos,layout
         
         mobj.volume = 1e-15
         mesh = moose.element(mobj.path+'/mesh')
-        qGItem = ComptItem(scene,pos.toPoint().x(),pos.toPoint().y(),500,500,mobj)
+        qGItem = ComptItem(scene,pos.toPoint().x(),pos.toPoint().y(),100,100,mobj)
         qGItem.setPen(QtGui.QPen(Qt.QColor(66,66,66,100), 1, Qt.Qt.SolidLine, Qt.Qt.RoundCap, Qt.Qt.RoundJoin))
         view.sceneContainerPt.addItem(qGItem)
         qGItem.cmptEmitter.connect(qGItem.cmptEmitter,QtCore.SIGNAL("qgtextPositionChange(PyQt_PyObject)"),layoutPt.positionChange1)
diff --git a/sidebar.py b/sidebar.py
index c989528a28b38f1da385e7fe2d837133b5a7530b..d14b1afca5ad61d69a3d5a8689c0a282c642c84b 100644
--- a/sidebar.py
+++ b/sidebar.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+
 # -*- coding: utf-8 -*-
 from __future__ import print_function
 
diff --git a/suds/__init__.py b/suds/__init__.py
index 1f8a6d908effffb3405d7652ab096f4f778c0615..a90710283218ffab8466f9ad89315c74550707f1 100644
--- a/suds/__init__.py
+++ b/suds/__init__.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/argparser.py b/suds/argparser.py
index 84ac0262aae90840ff6826b41402a38ae3bf3ea0..67bdb02bec0a250540fc3f02b30a3012ca368509 100644
--- a/suds/argparser.py
+++ b/suds/argparser.py
@@ -13,7 +13,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jurko Gospodnetić jurko.gospodnetic@pke.hr )
 
 """
diff --git a/suds/bindings/__init__.py b/suds/bindings/__init__.py
index 1704fa9d72390a0303d0a527466731f8547eb396..27e969aec860f1ed955a64fbb8fb01b3622b681e 100644
--- a/suds/bindings/__init__.py
+++ b/suds/bindings/__init__.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/bindings/binding.py b/suds/bindings/binding.py
index 62f641c2bca99fb8cb3986a409e3e6b25d89a8a8..45966eb460077daf5139af7443141b4517d33812 100644
--- a/suds/bindings/binding.py
+++ b/suds/bindings/binding.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/bindings/document.py b/suds/bindings/document.py
index 84ef566edeb2edf4a5c356d536209000b0b93424..898ca5d5d80c1c734b4e7b1a551166ec635e9f95 100644
--- a/suds/bindings/document.py
+++ b/suds/bindings/document.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/bindings/multiref.py b/suds/bindings/multiref.py
index 52fa47add1f691552b105969ad7f56d80fe34158..99005cd237f0dccd9f39c270d1ecd49be9e2aed0 100644
--- a/suds/bindings/multiref.py
+++ b/suds/bindings/multiref.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/bindings/rpc.py b/suds/bindings/rpc.py
index d164960d22903a54c9f6c7da01483a0d84dbae7d..c3fb6aba2079b0c7c2b58f7a9bef0f2cb55243fe 100644
--- a/suds/bindings/rpc.py
+++ b/suds/bindings/rpc.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/builder.py b/suds/builder.py
index 8ebfb3853f6ad6a767de03d442eaec0c9efa17ee..926474969145ebd66d91f3d1b206cf99d80bf761 100644
--- a/suds/builder.py
+++ b/suds/builder.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/cache.py b/suds/cache.py
index e156d1910bde0be7e24104b986bf020b3fc112d0..91f0c0ca111c5418bbf1bf10fe8b7ba8024be409 100644
--- a/suds/cache.py
+++ b/suds/cache.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/client.py b/suds/client.py
index d7fda6020420f34e56b9f1b5c87c6d3f1e44c5e1..2a664fe006c7d3e4dbb48a1924c1447379d9d85f 100644
--- a/suds/client.py
+++ b/suds/client.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/metrics.py b/suds/metrics.py
index 9b15f18a053e0a83d129d39244dbe15871aa1f62..3ac320e427bb23ff6c6eca1657bef927af1ee0c1 100644
--- a/suds/metrics.py
+++ b/suds/metrics.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/__init__.py b/suds/mx/__init__.py
index 719e52df714873ab6a7b54600533c7e046968d25..dc8154b836a75df4773af3b87a98561c7a75be96 100644
--- a/suds/mx/__init__.py
+++ b/suds/mx/__init__.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/appender.py b/suds/mx/appender.py
index f900338ff5f1971550f324cb89382c8d87397037..e60dc7922f7b7799efe5bdca8cdfcb71274ae3a6 100644
--- a/suds/mx/appender.py
+++ b/suds/mx/appender.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/basic.py b/suds/mx/basic.py
index b2de1611ea0a17007e28c2f742246bdb5d33cdf8..2bbebfeae05450d356865e2598918aafd938e76b 100644
--- a/suds/mx/basic.py
+++ b/suds/mx/basic.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/core.py b/suds/mx/core.py
index b7fe24c157bff496963ec7a58418e54668fde7fe..93ae3e0525ee4e951f292f6ff3bbb6c1da6c1d09 100644
--- a/suds/mx/core.py
+++ b/suds/mx/core.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/encoded.py b/suds/mx/encoded.py
index ec09536836bf043bdfa5085911d8860054e592e5..3c91dc95cb97ef6062738538e1d12e4c4cf6be25 100644
--- a/suds/mx/encoded.py
+++ b/suds/mx/encoded.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/literal.py b/suds/mx/literal.py
index 4b3480f739d4be131681b457ba8a5942db507231..44f38a309160041e0c6ea88bcbe17a690f17490c 100644
--- a/suds/mx/literal.py
+++ b/suds/mx/literal.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/mx/typer.py b/suds/mx/typer.py
index dc16fa53072dbe2240ed9e9e9a919f0f639a50c5..aa52ad32b9ee3ca0fd883666ccef2b0a15c5b1ec 100644
--- a/suds/mx/typer.py
+++ b/suds/mx/typer.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/options.py b/suds/options.py
index 2b2d48966b6d82a04fdc324d33676d31c845de2d..de493269d68ee47a1edca43c3a87c43e0f96b55b 100644
--- a/suds/options.py
+++ b/suds/options.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/plugin.py b/suds/plugin.py
index 3579f5c4e78d6833d94bea5bce2d9f1c99e57d1c..061656822bbeb8f259b0093b232fe632abd8c40f 100644
--- a/suds/plugin.py
+++ b/suds/plugin.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/properties.py b/suds/properties.py
index 5907d943df4e69abbd3523ac4b5d40a438e8336e..7103232334f736bb594aed71bdcf3412b8216b83 100644
--- a/suds/properties.py
+++ b/suds/properties.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/reader.py b/suds/reader.py
index ad71642ab3ddb6b143fdb3a7d9033d397acd2741..3c8d5833ee90737f4434abe87c2c548040cee05a 100644
--- a/suds/reader.py
+++ b/suds/reader.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/resolver.py b/suds/resolver.py
index 2a3016962eae7347b23c0fde2acf8562e9055c05..725e723b3eb16764498f7f70acf3676ab8deb267 100644
--- a/suds/resolver.py
+++ b/suds/resolver.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/__init__.py b/suds/sax/__init__.py
index be138239eb1a13ae1087576b9df8df5934e60b48..bef7825320a193b4e6ae056649324ca437d66831 100644
--- a/suds/sax/__init__.py
+++ b/suds/sax/__init__.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/attribute.py b/suds/sax/attribute.py
index 61c5ad7a61e12fbb6ba8e2d9f5a4bb8bf6e1a5c6..c775e20f20ae2f8fc21aaec806af148f802e966b 100644
--- a/suds/sax/attribute.py
+++ b/suds/sax/attribute.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/date.py b/suds/sax/date.py
index c5e5e93dd0b0d0248add803858f3c633f69ea1e7..ac534c48352a2a11884af29c6db398062213cd95 100644
--- a/suds/sax/date.py
+++ b/suds/sax/date.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jurko Gospodnetić ( jurko.gospodnetic@pke.hr )
 # based on code by: Glen Walker
 # based on code by: Nathan Van Gheem ( vangheem@gmail.com )
diff --git a/suds/sax/document.py b/suds/sax/document.py
index 7a4a615d49ec1f10790d9c736c5cf5726929d6bf..8697e08870e2deb70c9c737d8b5e8b0481c62eb2 100644
--- a/suds/sax/document.py
+++ b/suds/sax/document.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/element.py b/suds/sax/element.py
index 084ea2b05a0d49edfd9183138f0d452c5408a4ad..502d90dd5ecaa7138a89acf4e7b66ab6e4f5312f 100644
--- a/suds/sax/element.py
+++ b/suds/sax/element.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/enc.py b/suds/sax/enc.py
index 8d3219c83a05ee6aa297b3b6d0c589ac5ae55aec..d15988d73f498aa52b8b25d1b73bc1aa7b90a289 100644
--- a/suds/sax/enc.py
+++ b/suds/sax/enc.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/parser.py b/suds/sax/parser.py
index a82583a0dcf5a593094ad1b03ac2e9bb9d5dea83..2f48b3bf8f3d89a6f1b85f5395b85b3da3878f3b 100644
--- a/suds/sax/parser.py
+++ b/suds/sax/parser.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sax/text.py b/suds/sax/text.py
index 985386e44e442f59acba0bed7be18770830e8c97..ebdbc624217790800a2e5667b0c9435bf905f02d 100644
--- a/suds/sax/text.py
+++ b/suds/sax/text.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/servicedefinition.py b/suds/servicedefinition.py
index 6b0e72f87f277c7d87856e1ade204e20a8f36a40..19ed2435c3335fd0383bc03824587f1128fb0723 100644
--- a/suds/servicedefinition.py
+++ b/suds/servicedefinition.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/serviceproxy.py b/suds/serviceproxy.py
index 278c18967515867816ab3e859e9501f14e129305..1b6a62f0f3f0a6fec15887e3f9b5363f16ae28bf 100644
--- a/suds/serviceproxy.py
+++ b/suds/serviceproxy.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/soaparray.py b/suds/soaparray.py
index ea04fa7add0d7595b10ae4cdd9e09ea26ef05fc0..474efeaea9c0b46f7a848977f879c173ae2be1ef 100644
--- a/suds/soaparray.py
+++ b/suds/soaparray.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/store.py b/suds/store.py
index e5931aa5d20233d66b296ba8ee6df91e467ac172..58ebf4ac9cbd514ab4901b13a531c52a17e9ae02 100644
--- a/suds/store.py
+++ b/suds/store.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/sudsobject.py b/suds/sudsobject.py
index 0c18d5a7c03e0ea39f7169e6facdd905dee50278..9894009956a96816a605c99efdf27b2dd4a0a74b 100644
--- a/suds/sudsobject.py
+++ b/suds/sudsobject.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/transport/__init__.py b/suds/transport/__init__.py
index b193aead6edfc2c84c6d4070a64b6d8cdcc5ea89..6ffea2dc29a4f660e6b1252259d04b5c64805343 100644
--- a/suds/transport/__init__.py
+++ b/suds/transport/__init__.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/transport/http.py b/suds/transport/http.py
index e3d042bec4ca54a71bb183bf20fa3ab28dfced41..c3f2512863afdb0a3fa17cc5a51ea3815a4744bd 100644
--- a/suds/transport/http.py
+++ b/suds/transport/http.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/transport/https.py b/suds/transport/https.py
index cdff55ab96f4e80671a2f61653842bfad4a52a27..080315ad892c8d5751a8205dba7935a61116490f 100644
--- a/suds/transport/https.py
+++ b/suds/transport/https.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/transport/options.py b/suds/transport/options.py
index f6a071e02ce9fb8f253d16f449dfeb0f0a8f6c5f..c4c1552906ea36d03fa70a236d73f01711bd583b 100644
--- a/suds/transport/options.py
+++ b/suds/transport/options.py
@@ -10,7 +10,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/umx/__init__.py b/suds/umx/__init__.py
index ca65cad1544365c28a317f966b0414eafdfea058..f672320397ab01b50b38caba8e14e5524b941d0d 100644
--- a/suds/umx/__init__.py
+++ b/suds/umx/__init__.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/umx/attrlist.py b/suds/umx/attrlist.py
index df8da0bf32c33d702d6f68ff08311ed6fab292c4..128010a2f8e21134a17198af55fd125bc29d89ea 100644
--- a/suds/umx/attrlist.py
+++ b/suds/umx/attrlist.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/umx/basic.py b/suds/umx/basic.py
index 888a21221f3e87626e6705c424380f30eaa38c5e..e0b79ccdc7b73c3cfef4ff5291d875e1a0f450cd 100644
--- a/suds/umx/basic.py
+++ b/suds/umx/basic.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/umx/core.py b/suds/umx/core.py
index 4db8eaa7723d5b6526a40817f9048c1bd9b7c5ba..9ffa3bd4361ddc88025ef02517ae74af3bd3a00d 100644
--- a/suds/umx/core.py
+++ b/suds/umx/core.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/umx/encoded.py b/suds/umx/encoded.py
index bb454e1cc84213e55e6c4730bfa5142bb2b82897..cce56b570a0c0ab53d27062ad9e3d4687e1e7d7c 100644
--- a/suds/umx/encoded.py
+++ b/suds/umx/encoded.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/umx/typed.py b/suds/umx/typed.py
index 7ab832980f858484d69b3be5b29a01a29f66d6a0..caca8d36b10a6837b4bf2682bd049bb10d005eaa 100644
--- a/suds/umx/typed.py
+++ b/suds/umx/typed.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/version.py b/suds/version.py
index 28f5a90a2fd75efecffa1cadc91f94cefff39696..d2c92872c36944450e718f88de51a0a34b38d830 100644
--- a/suds/version.py
+++ b/suds/version.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
 """
 Module containing the library's version information.
diff --git a/suds/wsdl.py b/suds/wsdl.py
index 987dbc3fadf017a78e890b8771643e323f48093c..8a5e55842abf868d1f0de510650b91b0deb55bea 100644
--- a/suds/wsdl.py
+++ b/suds/wsdl.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/wsse.py b/suds/wsse.py
index c2f7f524297fae37322d4297115181ccb3268a2e..06fe963de3b6b65c45c917871977647086824c9f 100644
--- a/suds/wsse.py
+++ b/suds/wsse.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/__init__.py b/suds/xsd/__init__.py
index c5d801543bcc04b24b908eb1e096bb351bae4458..5c5dd8c7d8b923cee45c709d3556eeae6e133ffc 100644
--- a/suds/xsd/__init__.py
+++ b/suds/xsd/__init__.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 
diff --git a/suds/xsd/deplist.py b/suds/xsd/deplist.py
index b813f80f1affacfaca63f1573c58793051235c1d..b686675fce2b2a5eceaaaaeb80a5170586064fb0 100644
--- a/suds/xsd/deplist.py
+++ b/suds/xsd/deplist.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/doctor.py b/suds/xsd/doctor.py
index 5a52e76c66258688fec1dcba49ddce2e49bfe304..afef6ae6c653c963ac9e33c6e97b609181d4fd9d 100644
--- a/suds/xsd/doctor.py
+++ b/suds/xsd/doctor.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/query.py b/suds/xsd/query.py
index 8f2266b1b7c60d824e8487e63e09b60c9398fbcf..62929c9f774d779099515d87037ecb8e09124d6a 100644
--- a/suds/xsd/query.py
+++ b/suds/xsd/query.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/schema.py b/suds/xsd/schema.py
index 00e217ffc332cbc656c8062fa879c1e4945ce71b..33a09486f870d7dd06e5254a0458ebcac95954dc 100644
--- a/suds/xsd/schema.py
+++ b/suds/xsd/schema.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/sxbase.py b/suds/xsd/sxbase.py
index 1ceb82363e69856d9aa9f0eff35d7551ce7b56ac..28ab8144b8155716379c12ad62b06b9a56d47478 100644
--- a/suds/xsd/sxbase.py
+++ b/suds/xsd/sxbase.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/sxbasic.py b/suds/xsd/sxbasic.py
index f6050885169475442aae8d2f283efefe2b9b9c27..1f55fd98d6fc132b05c5385c0469bd7a9ef268b8 100644
--- a/suds/xsd/sxbasic.py
+++ b/suds/xsd/sxbasic.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """
diff --git a/suds/xsd/sxbuiltin.py b/suds/xsd/sxbuiltin.py
index 3d2c3dde96667b74ec221b837009f38af6faf830..3fc82aafcd51fc3cb002778d835238a70694be00 100644
--- a/suds/xsd/sxbuiltin.py
+++ b/suds/xsd/sxbuiltin.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # written by: Jeff Ortel ( jortel@redhat.com )
 
 """