Skip to content

Commit

Permalink
fix project xml export
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Oct 6, 2017
1 parent 114e658 commit 4283adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/projects/serializers/export.py
Expand Up @@ -61,6 +61,6 @@ class Meta:
)

def get_values(self, obj):
values = Value.objects.filter(snapshot=None)
values = Value.objects.filter(project=obj, snapshot=None)
serializer = ValueSerializer(instance=values, many=True)
return serializer.data

0 comments on commit 4283adc

Please sign in to comment.