mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-17 22:01:07 -07:00
be explicit about urllib import and remove conditional urllib(2) import
urllib and urllib2 have been in the python stdlib since at least python-2.3. There's no reason to conditionalize it. Fixes https://github.com/ansible/ansible/issues/11322
This commit is contained in:
parent
655fa27dc7
commit
16bd2c7357
11 changed files with 23 additions and 20 deletions
|
@ -81,7 +81,7 @@ options:
|
|||
default: 'yes'
|
||||
choices: ['yes', 'no']
|
||||
|
||||
requirements: [ "urllib", "urllib2" ]
|
||||
requirements: []
|
||||
author: "Nandor Sivok (@dominis)"
|
||||
'''
|
||||
|
||||
|
@ -99,7 +99,7 @@ ansible host -m netscaler -a "nsc_host=nsc.example.com user=apiuser password=api
|
|||
|
||||
import base64
|
||||
import socket
|
||||
|
||||
import urllib
|
||||
|
||||
class netscaler(object):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue