X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0c10af94c3d8f16624d5a8ac775502f92c085cde..73e3cc6c4b80f1afbfc78fc7ccd6f6cfc90b719c:/apps/api/management/commands/mobileinit.py diff --git a/apps/api/management/commands/mobileinit.py b/apps/api/management/commands/mobileinit.py index ca5431ebd..658b1770d 100755 --- a/apps/api/management/commands/mobileinit.py +++ b/apps/api/management/commands/mobileinit.py @@ -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,