Skip to content

Commit 33c60eb

Browse files
committed
Changed upload_to in tickets models.py to 'screenshots'
1 parent cad19f6 commit 33c60eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tickets/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Ticket(models.Model):
3131
tags = TaggableManager(blank=True)
3232
upvotes = models.IntegerField(default=0)
3333
screenshot = models.ImageField(
34-
upload_to='tickets/', null=True, default=None, blank=True)
34+
upload_to='screenshots', null=True, default=None, blank=True)
3535
history = HistoricalRecords()
3636

3737
def age(self):

0 commit comments

Comments
 (0)