This function was from the first attempt at a curses interface. Since we're
using urwid now instead of curses directly, we don't need it anymore.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
We can't use the name "import" for our import code because it would conflict
with a built-in function. As a consequence, we use the name import_into
instead. For consistency, we'll call the export function export_from.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
setlocale should be the first thing called, and it was, except that it was
hidden among unrelated code. Move it to the main function so that it's clear
that it's called.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>