Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (331 - 333 of 1174)

Ticket Resolution Summary Owner Reporter
#1013 wontfix 0.7.1 not on pypi Simon Fondrie-Teitler
Description

Latest is 0.7.0

https://pypi.python.org/pypi/mediagoblin/

#1010 fixed Typos in mediagoblin/media_types/image/migrations.py ayleph
Description

Three instances of media_entries have been misspelled as media_entires. This doesn't appear to cause any problems, as the misspelled variable is referred to by the same name later, but this should still be corrected.

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... Manuel
Description

... if launched from the bin dir.

It works well when launched from mediagoblin/ but fails from mediagoblin/bin

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.