Browse Source

Plugin: Extend tag to more characters

Sven Velt 10 years ago
parent
commit
b0f4563919
1 changed files with 1 additions and 1 deletions
  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):