diff options
author | hut <hut@lavabit.com> | 2010-04-13 13:47:45 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-13 13:48:00 +0200 |
commit | dd6c4eee64d8a6f5cdc8e6c9332ad2f4435f15c6 (patch) | |
tree | 8f2e2b4d4c2a418f5cba917dce822e929194f012 | |
parent | 48970395e4643cb74c37547363b196c7c4029678 (diff) | |
download | ranger-dd6c4eee64d8a6f5cdc8e6c9332ad2f4435f15c6.tar.gz |
Avoid syntax warning
-rw-r--r-- | ranger/__main__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/__main__.py b/ranger/__main__.py index 98ce47da..827452ff 100644 --- a/ranger/__main__.py +++ b/ranger/__main__.py @@ -75,7 +75,8 @@ def main(): from ranger.ext import curses_interrupt_handler from ranger.core.fm import FM from ranger.core.environment import Environment - from ranger.shared import * + from ranger.shared import (EnvironmentAware, FileManagerAware, + SettingsAware) from ranger.gui.defaultui import DefaultUI as UI from ranger.fsobject.file import File |