diff options
author | necoro <> | 2006-10-15 16:29:23 +0000 |
---|---|---|
committer | necoro <> | 2006-10-15 16:29:23 +0000 |
commit | 501571fadc81be83017968b098fb05b73a6043b1 (patch) | |
tree | b78807ee7d3be660ae2b31cf0021808cb612fff8 /geneticone/gui/gui_helper.py | |
parent | 40eaa80dce320c6e64e66d96ec28c9fc532c061c (diff) | |
download | portato-501571fadc81be83017968b098fb05b73a6043b1.tar.gz portato-501571fadc81be83017968b098fb05b73a6043b1.tar.bz2 portato-501571fadc81be83017968b098fb05b73a6043b1.zip |
Implemented emerge --sync
Diffstat (limited to 'geneticone/gui/gui_helper.py')
-rw-r--r-- | geneticone/gui/gui_helper.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/geneticone/gui/gui_helper.py b/geneticone/gui/gui_helper.py index 7171b67..909c98f 100644 --- a/geneticone/gui/gui_helper.py +++ b/geneticone/gui/gui_helper.py @@ -506,6 +506,10 @@ class EmergeQueue: self._emerge(options, ["world"], [self.emergeIt]) + def sync (self): + """Calls "emerge --sync".""" + self._emerge(["--sync"], [], []) + def remove_with_children (self, it, removeNewFlags = True): """Convenience function which removes all children of an iterator and than the iterator itself. |