pingmapper 5.0.4__py3-none-any.whl → 5.0.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pingmapper/__main__.py CHANGED
@@ -16,7 +16,7 @@ else:
16
16
 
17
17
  def main(process):
18
18
 
19
- from .version import __version__
19
+ from pingmapper.version import __version__
20
20
  print("\n\nPINGMapper v{}".format(__version__))
21
21
 
22
22
  # Process single sonar log
@@ -2633,8 +2633,8 @@ class portstarObj(object):
2633
2633
  inDirPort = os.path.join(self.port.projDir, self.port.beamName, 'rect_wcr')
2634
2634
  inDirStar = os.path.join(self.star.projDir, self.star.beamName, 'rect_wcr')
2635
2635
  else:
2636
- inDirPort = os.path.join(self.port.projDir, self.beamName, 'rect_wcp')
2637
- inDirStar = os.path.join(self.star.projDir, self.beamName, 'rect_wcp')
2636
+ inDirPort = os.path.join(self.port.projDir, self.port.beamName, 'rect_wcp')
2637
+ inDirStar = os.path.join(self.star.projDir, self.star.beamName, 'rect_wcp')
2638
2638
 
2639
2639
  portFiles = glob(os.path.join(inDirPort, '*.tif'))
2640
2640
  starFiles = glob(os.path.join(inDirStar, '*.tif'))