Modify ↓
Opened 14 years ago
Closed 14 years ago
#7574 closed defect (fixed)
Wrong import statement in screenshot plugin core
Reported by: | anonymous | Owned by: | Radek Bartoň |
---|---|---|---|
Priority: | normal | Component: | ScreenshotsPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description (last modified by )
beastsoft:0.11#svn diff
Index: tracscreenshots/core.py =================================================================== --- tracscreenshots/core.py (revision 8503) +++ tracscreenshots/core.py (working copy) @@ -1,9 +1,10 @@ # -*- coding: utf-8 -*- -import sys, re, os, os.path, shutil, mimetypes, unicodedata, Image, ImageOps +import sys, re, os, os.path, shutil, mimetypes, unicodedata from datetime import * from zipfile import * from StringIO import * +from PIL import Image, ImageOps # Deprecated as for Python 2.6. try:
Attachments (0)
Change History (3)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 14 years ago by
Status: | new → assigned |
---|
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [8597]) ScreenshotsPlugin:
Note: See
TracTickets for help on using
tickets.
That's better, thanks for reporting.