From aff99655bbef89349a3b01320426d49f92a7affe Mon Sep 17 00:00:00 2001 From: Carl Masak Date: Thu, 26 Jul 2012 22:26:14 +0200 Subject: [PATCH] [bin/crypt] this fits on one line now --- bin/crypt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/crypt b/bin/crypt index b9da94f..d602d4c 100755 --- a/bin/crypt +++ b/bin/crypt @@ -8,9 +8,7 @@ role Event { sub value($attr) { $attr.get_value(self) } sub attrpair($attr) { ":{name $attr}<{value $attr}>" } - sprintf '%s[%s]', - self.^name, - ~map &attrpair, self.^attributes; + sprintf '%s[%s]', self.^name, ~map &attrpair, self.^attributes; } }