We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
distutils.log
logging
setup.py
1 parent b6b7823 commit f2f0ac7Copy full SHA for f2f0ac7
setup.py
@@ -1,7 +1,7 @@
1
import os
2
from setuptools import setup
3
from setuptools.command.develop import develop
4
-from distutils import log
+import logging
5
6
7
class develop_command(develop):
@@ -11,7 +11,7 @@ def run(self):
11
path = os.path.join(self.install_dir, 'labscript-suite.pth')
12
super().run()
13
if not self.uninstall:
14
- log.info(f'Copying labscript-suite.pth to {path}')
+ logging.info(f'Copying labscript-suite.pth to {path}')
15
if not self.dry_run:
16
self.copy_file('labscript-suite.pth', path)
17
0 commit comments