forked from 0x2620/pandora
__future__ print
This commit is contained in:
parent
5ced5cf791
commit
c409b63f25
2 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -22,7 +23,7 @@ class Command(BaseCommand):
|
||||||
count = pos = models.Item.objects.count()
|
count = pos = models.Item.objects.count()
|
||||||
while offset <= count:
|
while offset <= count:
|
||||||
for i in models.Item.objects.all().order_by('id')[offset:offset+chunk]:
|
for i in models.Item.objects.all().order_by('id')[offset:offset+chunk]:
|
||||||
print pos, i.public_id
|
print(pos, i.public_id)
|
||||||
i.save()
|
i.save()
|
||||||
time.sleep(1) #dont overload db
|
time.sleep(1) #dont overload db
|
||||||
pos -= 1
|
pos -= 1
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@ -13,8 +14,8 @@ from ... import models
|
||||||
def link(src, target):
|
def link(src, target):
|
||||||
if not os.path.exists(target):
|
if not os.path.exists(target):
|
||||||
ox.makedirs(os.path.dirname(target))
|
ox.makedirs(os.path.dirname(target))
|
||||||
print src
|
print(src)
|
||||||
print '\t', target
|
print('\t', target)
|
||||||
os.symlink(src, target)
|
os.symlink(src, target)
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
|
@ -28,7 +29,7 @@ class Command(BaseCommand):
|
||||||
for i in models.Item.objects.all():
|
for i in models.Item.objects.all():
|
||||||
for f in i.files.all():
|
for f in i.files.all():
|
||||||
path = f.normalize_item_path()
|
path = f.normalize_item_path()
|
||||||
print path
|
print(path)
|
||||||
if settings.CONFIG['site']['folderdepth'] == 4:
|
if settings.CONFIG['site']['folderdepth'] == 4:
|
||||||
path = os.path.join(path[0], path)
|
path = os.path.join(path[0], path)
|
||||||
if f.data:
|
if f.data:
|
||||||
|
|
Loading…
Reference in a new issue