Skip to content

Commit ed8e5b6

Browse files
committed
More python 3 fixes
1 parent e7a6406 commit ed8e5b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Channelpedia/analyse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def generate(channel_file, channel, gates, temperature, ion = '?'):
7171

7272
info = generate(channel_file, channel, ["m"], 32)
7373

74-
print info
74+
print(info)
7575

7676
lf = open(new_lems_file, 'w')
7777
lf.write(info)
@@ -83,7 +83,7 @@ def generate(channel_file, channel, gates, temperature, ion = '?'):
8383

8484
info = generate(channel_file, channel, ["m"], 32)
8585

86-
print info
86+
print(info)
8787

8888
lf = open(new_lems_file, 'w')
8989
lf.write(info)

0 commit comments

Comments
 (0)