diff options
author | Bogdano Arendartchuk <bogdano@mandriva.org> | 2006-07-19 18:33:54 +0000 |
---|---|---|
committer | Bogdano Arendartchuk <bogdano@mandriva.org> | 2006-07-19 18:33:54 +0000 |
commit | 1b73048b2b21d8db4cc37559e06dfbd281f8f7c4 (patch) | |
tree | 88d618058e16ea21b01daf776bb1097574a3994b /RepSys/commands/editlog.py | |
parent | 85c8197d97c5d592feb022134fe99d95cbef1386 (diff) | |
download | mgarepo-1b73048b2b21d8db4cc37559e06dfbd281f8f7c4.tar mgarepo-1b73048b2b21d8db4cc37559e06dfbd281f8f7c4.tar.gz mgarepo-1b73048b2b21d8db4cc37559e06dfbd281f8f7c4.tar.bz2 mgarepo-1b73048b2b21d8db4cc37559e06dfbd281f8f7c4.tar.xz mgarepo-1b73048b2b21d8db4cc37559e06dfbd281f8f7c4.zip |
- reimplmented the SVN class in svn.py to use the module pysvn instead of
pexpect + svn
This was an unintented commit trigged by a test, so "releases", "cooker"
and "misc" directories should be ignored
Diffstat (limited to 'RepSys/commands/editlog.py')
-rw-r--r-- | RepSys/commands/editlog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/commands/editlog.py b/RepSys/commands/editlog.py index 1962ed8..a98b761 100644 --- a/RepSys/commands/editlog.py +++ b/RepSys/commands/editlog.py @@ -30,7 +30,7 @@ def parse_options(): def editlog(pkgdirurl, revision): svn = SVN() - svn.propedit("svn:log", pkgdirurl, rev=revision) + svn.propedit("svn:log", pkgdirurl, revision=revision, revprop=True) def main(): do_command(parse_options, editlog) |