Comment #1 on issue 3433 by determin...@gmail.com: CVS file path stored incorrectly in database
http://code.google.com/p/reviewboard/issues/detail?id=3433

hi, i got the same issue. It's good I checked it's already reported. Here is a dirty workaround to unblock you while waiting for the fix:



    def get_file(self, path, revision=HEAD):
        logging.debug("get_file: ___path=[%s]", path)
        if not path:
            raise FileNotFoundError(path, revision)

        #this is the fix:
        if not path.startswith("/"):
            path = '/' + path
        #end of fix

        return self.client.cat_file(path, revision)

the file is cvs.py in /usr/local/lib/python2.7/dist-packages/ReviewBoard-2.0.2-py2.7.egg/reviewboard/scmtools (see exact path on your server)


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.

Reply via email to