summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-09-29 10:32:10 +0200
committerGuido Günther <agx@sigxcpu.org>2010-09-29 10:32:19 +0200
commit5547c08bdd133f96e523a60a522d01fb10828e8c (patch)
treeb84040bcec7f8aff9e38f8a10ed101e13886365c
parent1c3a89d90211153ae5659f674ba44020543c8552 (diff)
Simplify set operation
-rwxr-xr-xwhatmaps2
1 files changed, 1 insertions, 1 deletions
diff --git a/whatmaps b/whatmaps
index 379fc61..f350915 100755
--- a/whatmaps
+++ b/whatmaps
@@ -544,7 +544,7 @@ def main(argv):
logging.warning("No service script found in '%s' for '%s' "
"- restart manually" % (pkg.name, pkg.procs))
else:
- all_services = all_services.union(services)
+ all_services.update(services)
except NotImplementedError:
if level > logging.INFO:
logging.error("Getting Service listing not implemented "