diff options
-rw-r--r-- | python/reinstall_vps_server.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/reinstall_vps_server.py b/python/reinstall_vps_server.py index 2eea203..52fdc39 100644 --- a/python/reinstall_vps_server.py +++ b/python/reinstall_vps_server.py | |||
@@ -1,6 +1,10 @@ | |||
1 | # -*- encoding: utf-8 -*- | 1 | # -*- encoding: utf-8 -*- |
2 | import json | 2 | import json |
3 | from ovh import ovh | 3 | try: |
4 | from ovh import ovh | ||
5 | except ImportError: | ||
6 | # In case it's installed globally | ||
7 | import ovh | ||
4 | import sys | 8 | import sys |
5 | import ovh_helper | 9 | import ovh_helper |
6 | 10 | ||