mirror of
https://git.deluge-torrent.org/deluge
synced 2025-10-04 08:08:44 +00:00
[Tests] Fix code for isort 4.0.0
This commit is contained in:
parent
379ba33bb9
commit
9d662bf059
31 changed files with 44 additions and 14 deletions
3
setup.py
3
setup.py
|
@ -200,9 +200,10 @@ class CleanPlugins(cmd.Command):
|
|||
|
||||
for path in glob.glob(plugin_path):
|
||||
if os.path.exists(os.path.join(path, "setup.py")):
|
||||
c = "cd " + path + "&& " + sys.executable + " setup.py clean"
|
||||
c = "cd " + path + " && " + sys.executable + " setup.py clean"
|
||||
if self.all:
|
||||
c += " -a"
|
||||
print("Calling '%s'" % c)
|
||||
os.system(c)
|
||||
|
||||
# Delete the .eggs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue