diff options
| author | 2025-02-17 07:44:19 +0100 | |
|---|---|---|
| committer | 2025-02-17 07:44:19 +0100 | |
| commit | 45a63a849358a1b392112a52ea4e04ae7558a92a (patch) | |
| tree | ce5c42cee1a2cb895a19fff6618d4697049e2f7e /setup.py | |
| parent | 57f6f2234100649ec511b323e201af99abfafbce (diff) | |
Merging upstream version 2.1.2~dev0+20240910.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -323,7 +323,7 @@ class CleanPlugins(Command): self.set_undefined_options('clean', ('all', 'all')) def run(self): - print('Cleaning the plugin\'s folders...') + print("Cleaning the plugin's folders...") plugin_path = 'deluge/plugins/*' @@ -332,7 +332,7 @@ class CleanPlugins(Command): c = 'cd ' + path + ' && ' + sys.executable + ' setup.py clean' if self.all: c += ' -a' - print('Calling \'%s\'' % c) + print("Calling '%s'" % c) os.system(c) # Delete the .eggs |
