Browse Source

Format bugfix in update controller for webui

Yann Weber 8 years ago
parent
commit
2ba728da7d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lodel/plugins/webui/interface/controllers/admin.py

+ 1
- 1
lodel/plugins/webui/interface/controllers/admin.py View File

47
         leo = target_leo.get_from_uid(datas['lodel_id'])
47
         leo = target_leo.get_from_uid(datas['lodel_id'])
48
         if leo is None:
48
         if leo is None:
49
             raise HttpException(404,
49
             raise HttpException(404,
50
-                'No %s with id %d' % (target_leo.__name__, datas['lodel_id']))
50
+                'No %s with id %s' % (target_leo.__name__, datas['lodel_id']))
51
         try:
51
         try:
52
             leo.update(
52
             leo.update(
53
                 { f:datas[f] for f in datas if f not in ('classname', 'lodel_id')})
53
                 { f:datas[f] for f in datas if f not in ('classname', 'lodel_id')})

Loading…
Cancel
Save