Procházet zdrojové kódy

Plugin: Extend tag to more characters

Sven Velt před 10 roky
rodič
revize
b0f4563919
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      plugin/models.py

+ 1 - 1
plugin/models.py

@@ -3,7 +3,7 @@ from django.db import models
 ##############################################################################
 
 class PluginMemory(models.Model):
-	tag = models.CharField(max_length=10)
+	tag = models.CharField(max_length=255)
 	maxid = models.IntegerField(default=0)
 
 	def __unicode__(self):