diff options
Diffstat (limited to 'system/puppet.py')
-rw-r--r-- | system/puppet.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/puppet.py b/system/puppet.py index 2a70da3c..d4f69b1d 100644 --- a/system/puppet.py +++ b/system/puppet.py @@ -22,7 +22,12 @@ import stat try: import json except ImportError: - import simplejson as json + try: + import simplejson as json + except ImportError: + # Let snippet from module_utils/basic.py return a proper error in this case + pass + DOCUMENTATION = ''' --- |