summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZhongyue Luo <lzyeval@gmail.com>2012-02-29 11:31:10 +0800
committerZhongyue Luo <lzyeval@gmail.com>2012-03-17 01:08:58 +0800
commitc8350b7a67248f9ef85ac1df80f124628b14e31d (patch)
treec7d8e404c791148850e311b1349263f56351298a /tools
parentc10ba52316897607dc37181440622803738ae068 (diff)
downloadpython-keystoneclient-c8350b7a67248f9ef85ac1df80f124628b14e31d.tar.gz
Backslash continuations (python-keystoneclient)
Fixes bug #940023 Backslash continuations removal for python-keystoneclient Change-Id: I816fc39ced20bb8ba8a42d3f07a03da94a76f8ea
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 0b1d843..e7859d4 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -144,8 +144,8 @@ class Fedora(Distro):
def get_distro():
- if os.path.exists('/etc/fedora-release') or \
- os.path.exists('/etc/redhat-release'):
+ if (os.path.exists('/etc/fedora-release') or
+ os.path.exists('/etc/redhat-release')):
return Fedora()
elif os.path.exists('/etc/debian_version'):
return Debian()