Skip to content

Commit 9ecf3c0

Browse files
committed
fix dictstrstr for future py3
1 parent a746633 commit 9ecf3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/traits_extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from traits.api import BaseUnicode
3434
from traits.api import Unicode
3535

36-
DictStrStr = traits.Dict(str, (bytes, str))
36+
DictStrStr = traits.Dict((bytes,str), (bytes, str))
3737
Str = Unicode
3838

3939
class BaseFile(BaseUnicode):

0 commit comments

Comments
 (0)