Skip to content

Commit 9256077

Browse files
committed
disable local_ns until something needs it
1 parent 8937be8 commit 9256077

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wikimon/parsers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ def parse_irc_message(message, ns_map=DEFAULT_NS_MAP):
114114
ns, _, title_rem = top_level_title.partition(':')
115115
try:
116116
msg_dict['ns'] = ns_map[ns]
117-
msg_dict['local_ns'] = ns
117+
#msg_dict['local_ns'] = ns
118118
except KeyError:
119119
msg_dict['ns'] = 'Main'
120-
msg_dict['local_ns'] = 'Main'
120+
#msg_dict['local_ns'] = 'Main'
121121

122122
try:
123123
msg_dict['change_size'] = int(msg_dict['change_size'])

0 commit comments

Comments
 (0)