diff options
author | Modestas Vainius <modestas@vainius.eu> | 2009-06-21 22:12:24 +0300 |
---|---|---|
committer | Modestas Vainius <modestas@vainius.eu> | 2009-06-21 22:12:24 +0300 |
commit | 153d40c7259a0b973a53bf8f28cdf839eb2a39e4 (patch) | |
tree | efbcbdc27cf3d6d5dcbffa02eff2aba622dc9eba | |
parent | 6ac4644330cb02384cf6c12a540cdc6b8e347170 (diff) | |
download | debhelper-153d40c7259a0b973a53bf8f28cdf839eb2a39e4.tar.gz |
Fix leftover from the old code.
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
-rw-r--r-- | Debian/Debhelper/Buildsystem/python_distutils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm index 8266fa0b..5a04d4e6 100644 --- a/Debian/Debhelper/Buildsystem/python_distutils.pm +++ b/Debian/Debhelper/Buildsystem/python_distutils.pm @@ -70,7 +70,7 @@ sub not_our_cfg { my $ret; if (open(my $cfg, $this->get_buildpath(".pydistutils.cfg"))) { $ret = not "# Created by dh_auto\n" eq <$cfg>; - close DISTUTILSCFG; + close $cfg; } return $ret; } |