Browse Source

Don't exec app.save() after add_pool & remove_pool

Bahtiar `kalkin-` Gadimov 8 years ago
parent
commit
04536c5950
1 changed files with 0 additions and 2 deletions
  1. 0 2
      qubes/__init__.py

+ 0 - 2
qubes/__init__.py

@@ -1495,7 +1495,6 @@ class Qubes(PropertyHolder):
         pool = self._get_pool(**kwargs)
         pool.setup()
         self.pools[name] = pool
-        self.save()
 
     def remove_pool(self, name):
         """ Remove a storage pool from config file.  """
@@ -1506,7 +1505,6 @@ class Qubes(PropertyHolder):
         except KeyError:
             return
 
-        self.save()
 
     def get_pool(self, name):
         '''  Returns a :py:class:`qubes.storage.Pool` instance '''