mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix setup.py in 1.0.7
This commit is contained in:
parent
e4d40a3bb3
commit
3f2ef1b457
1 changed files with 3 additions and 1 deletions
4
setup.py
4
setup.py
|
@ -28,6 +28,7 @@ from setuptools import setup, find_packages, Extension
|
|||
from distutils import cmd, sysconfig
|
||||
from distutils.command.build import build as _build
|
||||
from distutils.command.clean import clean as _clean
|
||||
from distutils.command.install import install
|
||||
|
||||
import msgfmt
|
||||
import os
|
||||
|
@ -308,7 +309,8 @@ cmdclass = {
|
|||
'build_trans': build_trans,
|
||||
'build_plugins': build_plugins,
|
||||
'clean_plugins': clean_plugins,
|
||||
'clean': clean
|
||||
'clean': clean,
|
||||
'install': install
|
||||
}
|
||||
|
||||
# Data files to be installed to the system
|
||||
|
|
Loading…
Add table
Reference in a new issue