summaryrefslogtreecommitdiffstats
path: root/keystone/common
diff options
context:
space:
mode:
authorZhongyue Luo <zhongyue.nah@intel.com>2012-09-12 10:28:18 +0800
committerZhongyue Luo <zhongyue.nah@intel.com>2012-09-19 11:00:55 +0800
commit4f39aa2b94efaed08f43ef8a01067f89e2d2b192 (patch)
tree5f30a278cc8cd48e18c106514309740447059640 /keystone/common
parentf261f718eebdfc60cdf9ce1f227c43f462dc163c (diff)
Backslash continuation cleanup
Removed unnecessary backslash continuations Added backslash continuation rules to HACKING.rst Change-Id: Id91da5b7e9be4d4587dded95fe7a0415240213ec
Diffstat (limited to 'keystone/common')
-rw-r--r--keystone/common/openssl.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/keystone/common/openssl.py b/keystone/common/openssl.py
index 952c377e..b2f61963 100644
--- a/keystone/common/openssl.py
+++ b/keystone/common/openssl.py
@@ -24,9 +24,9 @@ from keystone import config
CONF = config.CONF
-DIR_PERMS = stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR | \
- stat.S_IRGRP | stat.S_IXGRP | \
- stat.S_IROTH | stat.S_IXOTH
+DIR_PERMS = (stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR |
+ stat.S_IRGRP | stat.S_IXGRP |
+ stat.S_IROTH | stat.S_IXOTH)
CERT_PERMS = stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH
PRIV_PERMS = stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
DEFAULT_SUBJECT = "/C=US/ST=Unset/L=Unset/O=Unset/CN=www.example.com"