summaryrefslogtreecommitdiff
path: root/Debian/Dgit.pm
diff options
context:
space:
mode:
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 9216dee..a453f35 100644
--- a/Debian/Dgit.pm
+++ b/Debian/Dgit.pm
@@ -96,7 +96,7 @@ sub shellquote {
local $_;
foreach my $a (@_) {
$_ = $a;
- if (!length || m{[^-=_./0-9a-z]}i) {
+ if (!length || m{[^-=_./:0-9a-z]}i) {
s{['\\]}{'\\$&'}g;
push @out, "'$_'";
} else {