Skip to content

Commit 314e80e

Browse files
committed
minor bug fixes
1 parent cfff051 commit 314e80e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyNastran/gui/test/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_gui_utils_03(self):
2222
load_csv(csv_filename)
2323

2424
def test_gui_utils_03(self):
25-
csv_filename = os.path.join(pkg_path, '..', 'models', 'custom_geom.txt')
25+
csv_filename = os.path.join(pkg_path, '..', 'models', 'custom_geom.csv')
2626
load_user_geom(csv_filename)
2727

2828
if __name__ == '__main__':

pyNastran/gui/testing_methods.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,10 @@ def _add_alt_actors(self, alt_grids):
403403
for name, grid in iteritems(alt_grids):
404404
self.geometry_actors[name] = GeometryActor()
405405

406+
def log_debug(self, msg):
407+
if self.debug:
408+
print('DEBUG: ', msg)
409+
406410
def log_info(self, msg):
407411
if self.debug:
408412
print('INFO: ', msg)

0 commit comments

Comments
 (0)