summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/recipe.html1
-rw-r--r--bitbake/lib/toaster/orm/models.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/recipe.html b/bitbake/lib/toaster/bldviewer/templates/recipe.html
index a62437066d..e9a1c1089d 100644
--- a/bitbake/lib/toaster/bldviewer/templates/recipe.html
+++ b/bitbake/lib/toaster/bldviewer/templates/recipe.html
@@ -38,7 +38,6 @@
38 <td>{{recipe.licensing_info}}</td> 38 <td>{{recipe.licensing_info}}</td>
39 <td>{{recipe.homepage}}</td> 39 <td>{{recipe.homepage}}</td>
40 <td>{{recipe.bugtracker}}</td> 40 <td>{{recipe.bugtracker}}</td>
41 <td>{{recipe.author}}</td>
42 <td>{{recipe.file_path}}</td> 41 <td>{{recipe.file_path}}</td>
43 <td> 42 <td>
44 <div style="height: 5em; overflow:auto"> 43 <div style="height: 5em; overflow:auto">
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index f60d138fe9..1e82a65f43 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -207,7 +207,6 @@ class Recipe(models.Model):
207 licensing_info = models.TextField(blank=True) 207 licensing_info = models.TextField(blank=True)
208 homepage = models.URLField(blank=True) 208 homepage = models.URLField(blank=True)
209 bugtracker = models.URLField(blank=True) 209 bugtracker = models.URLField(blank=True)
210 author = models.CharField(max_length=100, blank=True)
211 file_path = models.FilePathField(max_length=255) 210 file_path = models.FilePathField(max_length=255)
212 211
213 212