diff --git a/pykat/__init__.py b/pykat/__init__.py
index c4a01afb687111ea1f9e36a095ad3df797d711b8..781183d6b8f4c786d45bd17b0769b0a1dc11b5e1 100644
--- a/pykat/__init__.py
+++ b/pykat/__init__.py
@@ -2,7 +2,8 @@ from __future__ import absolute_import
 from __future__ import division
 from __future__ import print_function
 from __future__ import unicode_literals
-__version__ = "0.7.2"
+
+__version__ = "0.7.3"
 
 # This flag is used to switch on the gui features in pkat at import time
 USE_GUI = False
diff --git a/pykat/optics/romhom.py b/pykat/optics/romhom.py
index 9f96d2c858d3eeb724ca939a831150a144641197..847dae29ae6303afe62c504a58d7b898c343aaba 100644
--- a/pykat/optics/romhom.py
+++ b/pykat/optics/romhom.py
@@ -336,7 +336,7 @@ def makeWeights(smap, EI, verbose=True, useSymmetry=True, newtonCotesOrder=1):
     
     if useSymmetry:
         # get full A_xy
-        A_xy = smap.z_xy()#.transpose()
+        A_xy = smap.z_xy()
     
         xm = smap.x[smap.x < 0]
         xp = smap.x[smap.x > 0]
@@ -819,7 +819,7 @@ def makeWeightsNew(smap, EIxFilename, EIyFilename=None, verbose=True, newtonCote
             EIy = pickle.load(f)
 
     # get full A_xy
-    A_xy = smap.z_xy().transpose()
+    A_xy = smap.z_xy()
 
     xm = smap.x[smap.x <= 0]
     xp = smap.x[smap.x >= 0]