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

View File

@ -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])