diff options
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r-- | setuptools/dist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index 7e9ab5c9..c2e57f4b 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -210,7 +210,7 @@ class Distribution(_Distribution): self.require_features = [] self.features = {} self.dist_files = [] - self.src_root = attrs.pop("src_root") + self.src_root = attrs.pop("src_root", None) self.patch_missing_pkg_info(attrs) # Make sure we have any eggs needed to interpret 'attrs' if attrs is not None: |