First working PAC version
[findit] / src / files / outtable.py
index 6529d6d..7fc52ad 100755 (executable)
@@ -35,7 +35,7 @@ class Gtk_Presentation(object):
         # Определяем переменную в которой будет храниться выводимый список
         self.liststore = gtk.ListStore(str, str, gobject.TYPE_INT64)
 
-        for path, size, bsize in filelist:
+        for bsize, path, size in filelist:
             self.liststore.append([path, size, bsize])
 
         treeview = gtk.TreeView(self.liststore)