summaryrefslogtreecommitdiffstats
path: root/crypto/bin/ukrepl
diff options
context:
space:
mode:
authortv <tv@iiso>2011-09-27 00:12:49 +0200
committertv <tv@iiso>2011-09-27 00:12:49 +0200
commitecc173f3f472efcabf12693e17866930768af82b (patch)
tree59a1098d3f147d7fa09c84807e415535dcf6679e /crypto/bin/ukrepl
parentf541b6139ca8ecbc64c736179604280e3006bede (diff)
parent592331580802ace9e96f3e4369bc9019f8e484b9 (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'crypto/bin/ukrepl')
-rwxr-xr-xcrypto/bin/ukrepl7
1 files changed, 5 insertions, 2 deletions
diff --git a/crypto/bin/ukrepl b/crypto/bin/ukrepl
index b3b25db9..2dfaabc4 100755
--- a/crypto/bin/ukrepl
+++ b/crypto/bin/ukrepl
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2
# -*- coding: utf-8 -*-
import sys
@@ -98,4 +98,7 @@ for line in sys.stdin:
else:
print "unknown mode %c" % mode
helpme()
- print char,
+ try:
+ sys.stdout.write(char)
+ except:
+ sys.stdout.write(char.encode("utf-8"))