get_dim_names -> get_dim_name
This commit is contained in:
parent
150441ef0f
commit
9d0e088ced
|
@ -107,7 +107,7 @@ class NavigatorView (gtk.TreeView):
|
|||
self.grab_focus()
|
||||
|
||||
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])
|
||||
|
||||
|
|
Reference in New Issue