Page MenuHomePhabricator

flickrripper text interface
Closed, ResolvedPublic

Description

flickrripper current only works with a GUI interface. It should gracefully degrade to a text interface when a GUI is not available or is disabled by the user.

Event Timeline

jayvdb raised the priority of this task from to Needs Triage.
jayvdb updated the task description. (Show Details)
jayvdb added a project: Pywikibot.
jayvdb changed Security from none to None.
jayvdb added subscribers: Aklapper, Unknown Object (MLST), jayvdb.

Solved in 6cc7242a478f33b60a37c6b895c0509939e81a06 ?

if not isinstance(Tkdialog, ImportError) and not autonomous:
    try:
        (newPhotoDescription, newFilename, skip) = Tkdialog(
            photoDescription, photo, filename).show_dialog()
    except ImportError as e:
        pywikibot.warning(e)
        pywikibot.warning('Switching to autonomous mode.')
        autonomous = True
Xqt claimed this task.