summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnsa4
1 files changed, 3 insertions, 1 deletions
diff --git a/nsa b/nsa
index 5c8265f..e49aa37 100755
--- a/nsa
+++ b/nsa
@@ -350,7 +350,9 @@ channels = {}
CONFIG['projects'].each_value do |cl|
cl.each do |c|
m = /^NOTICE:(.*)/.match c
- if m then c = m[1]
+ if m then
+ c = m[1]
+ end
channels[c] = true
end
end