summaryrefslogtreecommitdiffstats
path: root/lib/modules/mysql_user2
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2018-12-05 22:12:28 +0100
committerGuilhem Moulin <guilhem@fripost.org>2018-12-05 22:12:28 +0100
commita98522cc7e5c1a6e64ee8b65648a005aa7494d1c (patch)
tree86d6d4e7c5a341d12e86a6fec92fa89c0e6504c2 /lib/modules/mysql_user2
parent9722d50b9b6c5ccd81892a00bdd3023399b004fb (diff)
Remove trailing spaces.
Diffstat (limited to 'lib/modules/mysql_user2')
-rw-r--r--lib/modules/mysql_user22
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/modules/mysql_user2 b/lib/modules/mysql_user2
index c3cc38f..f2d9d40 100644
--- a/lib/modules/mysql_user2
+++ b/lib/modules/mysql_user2
@@ -338,41 +338,41 @@ def config_get(config, section, option):
See: http://dev.mysql.com/doc/refman/5.0/en/option-files.html
"""
return strip_quotes(config.get(section, option))
def _safe_cnf_load(config, path):
data = {'user':'', 'password':''}
# read in user/pass
f = open(path, 'r')
for line in f.readlines():
line = line.strip()
if line.startswith('user='):
data['user'] = line.split('=', 1)[1].strip()
if line.startswith('password=') or line.startswith('pass='):
data['password'] = line.split('=', 1)[1].strip()
f.close()
- # write out a new cnf file with only user/pass
+ # write out a new cnf file with only user/pass
fh, newpath = tempfile.mkstemp(prefix=path + '.')
f = open(newpath, 'wb')
f.write('[client]\n')
f.write('user=%s\n' % data['user'])
f.write('password=%s\n' % data['password'])
f.close()
config.readfp(open(newpath))
os.remove(newpath)
return config
def load_mycnf():
config = ConfigParser.RawConfigParser()
mycnf = os.path.expanduser('~/.my.cnf')
if not os.path.exists(mycnf):
return False
try:
config.readfp(open(mycnf))
except (IOError):
return False