Commit 1f2c6efa authored by Michal Čihař's avatar Michal Čihař

Remove debug code

parent 12ed7ba2
......@@ -19,7 +19,6 @@ class UnitCommand(BaseCommand):
base = Unit.objects.none()
for arg in args:
parts = arg.split('/')
print parts
if len(parts) == 2:
prj, subprj = parts
base |= Unit.objects.filter(
......
......@@ -29,7 +29,6 @@ class Command(UnitCommand):
with trans.search.get_source_writer(buffered = False) as writer:
for unit in base.values('checksum', 'source', 'context', 'translation_id').iterator():
print unit
Unit.objects.add_to_source_index(
unit['checksum'],
unit['source'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment