Projects/laydi
Projects
/
laydi
Archived
7
0
Fork 0

get_dim_names -> get_dim_name

This commit is contained in:
Arnar Flatberg 2006-08-08 10:34:15 +00:00
parent 150441ef0f
commit 9d0e088ced
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class NavigatorView (gtk.TreeView):
self.grab_focus() self.grab_focus()
def display_data_info(self, data): def display_data_info(self, data):
dims = zip(data.get_dim_names(), data.shape) dims = zip(data.get_dim_name(), data.shape)
dim_text = ", ".join(["%s (%d)" % dim for dim in dims]) dim_text = ", ".join(["%s (%d)" % dim for dim in dims])