Skip to content

Commit

Permalink
Corrects South migration error
Browse files Browse the repository at this point in the history
  • Loading branch information
Basile LEGAL committed Jun 30, 2015
2 parents db1c950 + 946c92a commit 9e52cb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -130,12 +130,12 @@ def backwards(self, orm):
'publish': ('django.db.models.fields.BooleanField', [], {'default': 'True'})
},
'placeholderapp.multilingualexample1': {
'Meta': {'unique_together': '()', 'object_name': 'MultilingualExample1', 'index_together': '()'},
'Meta': {'unique_together': '()', 'object_name': 'MultilingualExample1'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'placeholder_1': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['cms.Placeholder']", 'null': 'True'})
},
'placeholderapp.multilingualexample1translation': {
'Meta': {'unique_together': "[('language_code', 'master')]", 'object_name': 'MultilingualExample1Translation', 'db_table': "'placeholderapp_multilingualexample1_translation'", 'index_together': '()'},
'Meta': {'unique_together': "[('language_code', 'master')]", 'object_name': 'MultilingualExample1Translation', 'db_table': "'placeholderapp_multilingualexample1_translation'"},
'char_1': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
'char_2': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
Expand Down
2 changes: 1 addition & 1 deletion cms/tests/frontend.py
Expand Up @@ -473,7 +473,7 @@ def test_cms_modal_html5_validation_error(self):
create_page('apphook', 'simple.html', 'fr', published=True,
apphook=Example1App)
url = '%s/%s/?%s' % (
self.live_server_url, '/apphook/detail/class/%s'
self.live_server_url, 'apphook/detail/class/%s'
% ex1.pk, get_cms_setting('CMS_TOOLBAR_URL__EDIT_ON')
)
self.driver.get(url)
Expand Down

0 comments on commit 9e52cb3

Please sign in to comment.