projects
/
rainbowstream.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
f2974b3
)
Merge pull request #156 from Azy8BsKXVko/fix_muting
author
Orakaro
<DTVD@users.noreply.github.com>
Tue, 9 Feb 2016 02:00:10 +0000
(11:00 +0900)
committer
Orakaro
<DTVD@users.noreply.github.com>
Tue, 9 Feb 2016 02:00:10 +0000
(11:00 +0900)
Fixed muting bug
rainbowstream/rainbow.py
patch
|
blob
|
blame
|
history
diff --git
a/rainbowstream/rainbow.py
b/rainbowstream/rainbow.py
index
b65b705
..
dd12abe
100644
(file)
--- a/
rainbowstream/rainbow.py
+++ b/
rainbowstream/rainbow.py
@@
-870,7
+870,7
@@
def mute():
rel = t.mutes.users.create(screen_name=screen_name[1:])
if isinstance(rel, dict):
printNicely(green(screen_name + ' is muted.'))
- c['IGNORE_LIST'] += [
unc(screen_name)
]
+ c['IGNORE_LIST'] += [
screen_name
]
c['IGNORE_LIST'] = list(set(c['IGNORE_LIST']))
else:
printNicely(red(rel))