Custom Query (1174 matches)
Results (331 - 333 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1013 | wontfix | 0.7.1 not on pypi | ||
| Description |
Latest is 0.7.0 |
|||
| #1010 | fixed | Typos in mediagoblin/media_types/image/migrations.py | ||
| Description |
Three instances of diff --git a/mediagoblin/media_types/image/migrations.py b/mediagoblin/media_types/image/migrations.py
index 4af8f29..83f5dc8 100644
--- a/mediagoblin/media_types/image/migrations.py
+++ b/mediagoblin/media_types/image/migrations.py
@@ -31,7 +31,7 @@ def remove_gps_from_image(db):
metadata = MetaData(bind=db.bind)
image_table = inspect_table(metadata, "image__mediadata")
location_table = inspect_table(metadata, "core__locations")
- media_entires_table = inspect_table(metadata, "core__media_entries")
+ media_entries_table = inspect_table(metadata, "core__media_entries")
# First do the data migration
for row in db.execute(image_table.select()):
@@ -58,9 +58,9 @@ def remove_gps_from_image(db):
location = db.execute(location_table.insert().values(position=fields))
# now store the new location model on Image
- db.execute(media_entires_table.update().values(
+ db.execute(media_entries_table.update().values(
location=location.inserted_primary_key[0]
- ).where(media_entires_table.c.id==row.media_entry))
+ ).where(media_entries_table.c.id==row.media_entry))
db.commit()
|
|||
| #1008 | no-action | gmg makeadmin <user> don't work... | ||
| Description |
... if launched from the bin dir. It works well when launched from mediagoblin/ but fails from mediagoblin/bin |
|||
