Skip to content

Commit f836d57

Browse files
committed
FIX: unicode for Python3
1 parent 5db8084 commit f836d57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

memory_profiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import __builtin__ as builtins
4040
else:
4141
import builtins
42-
def unicode(x): return str(x)
42+
def unicode(x, *args): return str(x)
4343

4444
# .. get available packages ..
4545
try:

0 commit comments

Comments
 (0)