Merge branch 'master' of github.com:fnp/wolnelektury
[wolnelektury.git] / apps / api / management / commands / mobileinit.py
index ca5431e..658b177 100755 (executable)
@@ -106,7 +106,8 @@ CREATE TABLE state (last_checked INTEGER);
 
 def current(last_checked):
     target = os.path.join(MOBILE_INIT_DB, 'initial.db')
-    os.unlink(target)
+    if os.path.lexists(target):
+        os.unlink(target)
     os.symlink(
         'initial.db-%d' % last_checked,
         target,