diff --git a/ckanext/odsh/helpers.py b/ckanext/odsh/helpers.py index 15c895c1ea53afb5eb56a501eb3da38e95f86825..132b32cbb40147c73fda12b96070991163c9f713 100644 --- a/ckanext/odsh/helpers.py +++ b/ckanext/odsh/helpers.py @@ -244,8 +244,6 @@ def odsh_show_testbanner(): def odsh_is_slave(): c = config.get('ckanext.odsh.slave', None) - print('SLVA') - print(c) if c is None or (c != 'True' and c != 'False'): return -1 return 1 if c == 'True' else 0