Roundup Tracker - Issues

Message2579

Author broader
Recipients
Date 2008-08-14.09:13:05
Message-id
In-reply-to
I'm using roundup as backend to construct a GUI program.
When call the hyperdb.exportFilename() method,it returns incorrect file path.

the old code is :
 return os.path.join(dirname, self.classname+'-files', subdir_filename)

when I change this line to the below:
 return os.path.join(dirname, 'files',self.classname, subdir_filename)
the result is right.
So I think that it's maybe a bug?

The running environment:
OS: Ubuntun 7.10
Python: 2.5.1
roundup: 1.4.4
History
Date User Action Args
2009-02-03 14:22:19adminlinkissue2051107 messages
2009-02-03 14:22:19admincreate