Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 1173)

Ticket
#994
Description

Currently, if you want to add a website-url to your profile, you have to include the string "http://", otherwise you get an error stating "the url is in the wrong format". It should not be necessary to include "http://" in the url.

#1010
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()
#1041
Description

Similar to #966

Celery 3.2 or 4.0 or whatever it becomes hasn't been released yet, but Ask is planning on dropping Python 2.6

See the note on dropped 2.5 support here

This is more of an FYI than an actual bug.

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