summaryrefslogtreecommitdiff
path: root/maskaudit.py
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2017-07-01 15:57:46 -0700
committerGary E. Miller <gem@rellim.com>2017-07-01 15:57:46 -0700
commitc525588f98776f32fb5fceba7127fe6dbede950b (patch)
tree41cb9df1766dbcb2c792e451dfd0e4dd8a61d248 /maskaudit.py
parent1f198d8dbc3fec72240e76be58ff57c4cca0a29e (diff)
downloadgpsd-c525588f98776f32fb5fceba7127fe6dbede950b.tar.gz
maskaudit: fix a pep8 nasty
Diffstat (limited to 'maskaudit.py')
-rwxr-xr-xmaskaudit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/maskaudit.py b/maskaudit.py
index 7cfb73c1..669f1e64 100755
--- a/maskaudit.py
+++ b/maskaudit.py
@@ -132,8 +132,8 @@ const char *gps_maskdump(gps_mask_t set)
gps_mask_t mask;
const char *name;
} *sp, names[] = {""" % (maxout + 3,))
- for (((flag, value)
- in clientside.primitive_masks + daemonside.primitive_masks)):
+ masks = clientside.primitive_masks + daemonside.primitive_masks
+ for (flag, value) in masks:
stem = flag
if stem.endswith("_SET"):
stem = stem[:-4]