Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2009-12-01 17:53:28 (GMT)
committer Daniel Drake <dsd@laptop.org>2009-12-01 17:53:28 (GMT)
commite3f7e296ed92c811c40e37ccfc1b8a4e2d917dcb (patch)
tree147dcdbf1c979219817bd01a3f0176cad510bb6c /src
parent2e80c732964df10f4a0ea24b238a4931f5528642 (diff)
Revert "Call sync() after profile creation. Addresses dlo#9612"
This reverts commit 67e7847ff4c04a0c4148fd76b70576bbd4718f0a. This is not present in master. We'll get a fix merged in master first, then backport.
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/intro/window.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/jarabe/intro/window.py b/src/jarabe/intro/window.py
index bce16ea..3975900 100644
--- a/src/jarabe/intro/window.py
+++ b/src/jarabe/intro/window.py
@@ -14,7 +14,6 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-from ctypes import cdll
import os
import logging
from gettext import gettext as _
@@ -34,10 +33,6 @@ from jarabe.intro import colorpicker
_BACKGROUND_COLOR = style.COLOR_WHITE
-def sync():
- libc = cdll.LoadLibrary("libc.so.6")
- libc.sync()
-
def create_profile(name, color=None, pixbuf=None):
if not pixbuf:
path = os.path.join(os.path.dirname(__file__), 'default-picture.png')
@@ -261,7 +256,6 @@ class IntroWindow(gtk.Window):
def _create_profile_cb(self, name, color):
create_profile(name, color)
- sync()
gtk.main_quit()
return False