Parcourir la source

Added TODO

Signed-off-by: Duncan Lock <duncan.lock@gmail.com>
Duncan Lock il y a 12 ans
Parent
commit
b823710a93
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      better_figures_and_images/better_figures_and_images.py

+ 2 - 0
better_figures_and_images/better_figures_and_images.py

@@ -44,6 +44,8 @@ def content_object_init(instance):
 
         if 'img' in content:
             for img in soup('img'):
+                # TODO: Pretty sure this isn't the right way to do this, too hard coded.
+                # There must be a setting that I should be using?
                 src = instance.settings['PATH'] + '/images/' + os.path.split(img['src'])[1]
                 im = Image.open(src)
                 extra_style = 'width: {}px;'.format(im.size[0])