Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
irker
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iDB
irker
Commits
76911f3d
Commit
76911f3d
authored
11 years ago
by
Alexander van Gessel
Committed by
Eric S. Raymond
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix unicode processing
Signed-off-by:
Eric S. Raymond
<
esr@thyrsus.com
>
parent
929d06ee
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+3
-0
3 additions, 0 deletions
NEWS
irkerd
+1
-1
1 addition, 1 deletion
irkerd
with
4 additions
and
1 deletion
NEWS
+
3
−
0
View file @
76911f3d
irker history
Repository head:
Fixed unicode processing
2.1 @ 2013-11-26
A performance improvement in the git repository hook.
Documentation polishing.
...
...
This diff is collapsed.
Click to expand it.
irkerd
+
1
−
1
View file @
76911f3d
...
...
@@ -348,7 +348,7 @@ class IRCServerConnection():
def
ship
(
self
,
string
):
"
Ship a command to the server, appending CR/LF
"
try
:
self
.
socket
.
send
(
string
+
b
'
\r\n
'
)
self
.
socket
.
send
(
string
.
encode
(
'
utf-8
'
)
+
b
'
\r\n
'
)
self
.
master
.
debug
(
2
,
"
TO: %s
"
%
string
)
except
socket
.
error
:
self
.
disconnect
(
"
Connection reset by peer.
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment