diff options
author | Dan Fandrich <danf@mageia.org> | 2025-02-03 19:30:47 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2025-02-03 22:25:12 -0800 |
commit | c488d9cdfb0aea78d4a0bde4778fe78eda1c46ea (patch) | |
tree | 034840bfc891f6873f4e2a0bcc86650291433f62 /MgaRepo/rpmutil.py | |
parent | 6d2c594260832373595effa4f63552a8068ae92c (diff) | |
download | mgarepo-c488d9cdfb0aea78d4a0bde4778fe78eda1c46ea.tar mgarepo-c488d9cdfb0aea78d4a0bde4778fe78eda1c46ea.tar.gz mgarepo-c488d9cdfb0aea78d4a0bde4778fe78eda1c46ea.tar.bz2 mgarepo-c488d9cdfb0aea78d4a0bde4778fe78eda1c46ea.tar.xz mgarepo-c488d9cdfb0aea78d4a0bde4778fe78eda1c46ea.zip |
Some of these would always cause run-time exceptions, which makes me
believe that because these haven't been reported before there's a lot of
dead code in here. There are a few more pytype errors that don't have
obvious fixes.
Diffstat (limited to 'MgaRepo/rpmutil.py')
-rw-r--r-- | MgaRepo/rpmutil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MgaRepo/rpmutil.py b/MgaRepo/rpmutil.py index a99c08a..1cbbd8a 100644 --- a/MgaRepo/rpmutil.py +++ b/MgaRepo/rpmutil.py @@ -707,6 +707,7 @@ def obsolete(pkgdirurl, branch=None, distro=None, backports=None, commit=False, svn = SVN() svn.mv(pkgdirurl, pkgdest, message=log) if commit: + # TODO: what is path supposed to be? svn.commit(path, log=log) def switch(mirrorurl=None): |