Clean up some useless prints

This commit is contained in:
Skia 2016-09-26 11:16:14 +02:00
parent 7a2985b186
commit 37072e1640
2 changed files with 0 additions and 2 deletions

View File

@ -221,7 +221,6 @@ class OperationForm(forms.ModelForm):
def clean(self): def clean(self):
self.cleaned_data = super(OperationForm, self).clean() self.cleaned_data = super(OperationForm, self).clean()
print(self.errors)
if self.cleaned_data['target_type'] == "USER": if self.cleaned_data['target_type'] == "USER":
self.cleaned_data['target_id'] = self.cleaned_data['user'].id self.cleaned_data['target_id'] = self.cleaned_data['user'].id
elif self.cleaned_data['target_type'] == "ACCOUNT": elif self.cleaned_data['target_type'] == "ACCOUNT":

View File

@ -273,7 +273,6 @@ class UserUploadProfilePictView(CanEditMixin, DetailView):
self.object = self.get_object() self.object = self.get_object()
if self.object.profile_pict: if self.object.profile_pict:
raise ValidationError(_("User already has a profile picture")) raise ValidationError(_("User already has a profile picture"))
print(request.FILES['new_profile_pict'])
f = request.FILES['new_profile_pict'] f = request.FILES['new_profile_pict']
parent = SithFile.objects.filter(parent=None, name="profiles").first() parent = SithFile.objects.filter(parent=None, name="profiles").first()
name = str(self.object.id) + "_profile.jpg" # Webcamejs uploads JPGs name = str(self.object.id) + "_profile.jpg" # Webcamejs uploads JPGs