Created
November 5, 2009 08:35
-
-
Save mashiro/226885 to your computer and use it in GitHub Desktop.
ジャッジメントですの!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from Misuzilla.Applications.TwitterIrcGateway.AddIns.DLRIntegration import DLRIntegrationAddIn | |
def OnPreSendMessageTimelineStatus(sender, e): | |
e.Text = e.Text + "\tジャッジメントですの!" | |
def OnBeforeUnload(sender, e): | |
Session.PreSendMessageTimelineStatus -= OnPreSendMessageTimelineStatus | |
Session.PreSendMessageTimelineStatus += OnPreSendMessageTimelineStatus | |
CurrentSession.AddInManager.GetAddIn(DLRIntegrationAddIn).BeforeUnload += OnBeforeUnload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment