summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Tools/BundleDeps.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix errros with old pylint/pep8Alexander Sulfrian2017-03-291-2/+2
| | | | | | | | | | | | For Python2.4 we need older version of pylint and pep8, that finds some more errors: - On python2.4 _ast is not available and pylint uses compiler.ast, that seems to have some problems with the line numbers if a comment is following the pylint disable marker. - In python2.4 there is no xml.etree. But we can ignore this error because Client.XML tries to find a suitable library. - Some small formatting issues.
* Bundler: add modification support to Bundle dependenciesAlexander Sulfrian2014-11-251-0/+34
Bundle dependencies are now realized with RequiredBundle and support inheritance of the modification flag. This requires new client support and will only work with clients >= 1.4.0pre2.