summaryrefslogtreecommitdiff
path: root/Debian/Dgit.pm
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2015-05-04 17:35:40 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2015-05-31 11:54:10 +0100
commitf82da50bcda81c6b3751e172dc943d4c348f4f72 (patch)
tree922038d927a59c49abf7f031d1cea1ea2a9a768a /Debian/Dgit.pm
parentf5fbed52cee73ceb72984a0f529a6444501432bd (diff)
dgit-repos-policy-debian: WIP bugfixes to debugging
Diffstat (limited to 'Debian/Dgit.pm')
-rw-r--r--Debian/Dgit.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Dgit.pm b/Debian/Dgit.pm
index f33b173..f68ebd2 100644
--- a/Debian/Dgit.pm
+++ b/Debian/Dgit.pm
@@ -94,7 +94,7 @@ sub enabledebug () {
sub enabledebuglevel ($) {
die if $debuglevel;
- ($debuglevel) = @_ + 0;
+ $debuglevel = $_[0] + 0;
enabledebug();
}