diff -r 16f9875e278b -r e8882d16384c UI/Browser.py --- a/UI/Browser.py Sun Jan 02 12:01:37 2011 +0100 +++ b/UI/Browser.py Mon Jan 03 17:10:45 2011 +0100 @@ -324,9 +324,11 @@ for itm in itmList: if isinstance(itm, BrowserFileItem): if itm.isPython2File(): - self.sourceFile[str, int, str].emit(itm.fileName(), 1, "Python") +## self.sourceFile[str, int, str].emit(itm.fileName(), 1, "Python") + self.sourceFile[str, int].emit(itm.fileName(), 1) elif itm.isPython3File(): - self.sourceFile[str, int, str].emit(itm.fileName(), 1, "Python3") +## self.sourceFile[str, int, str].emit(itm.fileName(), 1, "Python3") + self.sourceFile[str, int].emit(itm.fileName(), 1) elif itm.isRubyFile(): self.sourceFile[str, int, str].emit(itm.fileName(), 1, "Ruby") elif itm.isDFile():