Skip to content

Commit 72cb0ea

Browse files
committed
Debug
1 parent 1513604 commit 72cb0ea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

omv/engines/pynest.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@ def is_installed(version):
2222

2323
ret = True
2424
try:
25-
#print('PN1')
25+
print('PN1')
2626
try:
27-
#print('PN1a')
27+
print('PN1a')
2828
ret_str_cmd_line = check_output(['python -c "import nest; print(nest.__version__ if hasattr(nest,\'__version__\') else nest.version())"'], shell=True, verbosity=2)
2929

3030
if is_verbose():
3131
inform("NEST cmd line test: %s" % (ret_str_cmd_line), indent=2)
3232
ret_str = ret_str_cmd_line.split('Version: nest-')[1].split('Built:')[0].strip()
3333
except:
34-
#print('PN1b')
34+
print('PN1b')
3535

3636
import nest
37-
#print('PN2')
37+
print('PN2')
3838
if hasattr(nest,'__version__'):
39-
#print('PN3')
39+
print('PN3')
4040
ret_str = nest.__version__
4141
else:
42-
#print('PN4')
42+
print('PN4')
4343
ret_str = nest.version()
4444

4545
ret = len(ret_str) > 0

0 commit comments

Comments
 (0)