Show
Ignore:
Timestamp:
05/12/08 22:29:24 (7 months ago)
Author:
Tobias Eberle <info@…>
Children:
1153:45734eece898, 1159:205b05b8ff8c
Message:

fixed bug: files out of a project were displayed weirdly in the buffer list

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pida/core/document.py

    r1126 r1152  
    231231        match = self.boss.cmd('project', 'get_project_for_document', document=self) 
    232232        if match is None: 
    233             return None, os.path.join(os.path.split(self.directory)[-2:]) 
     233            return None, os.path.join(*os.path.split(self.directory)[-2:]) 
    234234        else: 
    235235            project, path = match