Pysvn Get Latest Revision Number For Specific Directory (not Head)
I'm trying to find the latest revision number for a specific directory in the svn root, without needing to create a working copy. I know many applications can do this, but I need t
Solution 1:
I had the same problem (Lord Gamez solution did not work for me).
I solved it with:
svnrev = client.info2(WORKING_COPY_DIR)[0][1]['last_changed_rev'].number
Post a Comment for "Pysvn Get Latest Revision Number For Specific Directory (not Head)"