We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae32eb commit d367d9fCopy full SHA for d367d9f
xcp/environ.py
@@ -47,8 +47,8 @@ def readInventory(root = '/'):
47
try:
48
fh = open(os.path.join(root, 'etc/xensource-inventory'))
49
50
- for line in ( x for x in ( y.strip() for y in fh )
51
- if not x.startswith('#') ):
+ for line in (x for x in (y.strip() for y in fh)
+ if not x.startswith('#')):
52
53
vals = line.split('=', 1)
54
0 commit comments