summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-09-21 23:30:49 +0200
committerhut <hut@lavab
<!DOCTYPE html>
<html dir="ltr" lang="en">
    <head>
        <meta charset='utf-8'>
        <title>TCPDump</title>
    </head>
    <body>
        <h1>TCPDump</h1>

        <pre>
        tcpdump -vvv -s 0 -l -n port 53
        </pre>

    </body>
</html>
*paths): """returns the path relative to rangers configuration directory""" if arg.clean: assert 0, "Should not access relpath_conf in clean mode!" else: - return os.path.join(arg.confdir, *paths) + return _join(arg.confdir, *paths) def relpath(*paths): """returns the path relative to rangers library directory""" - return os.path.join(RANGERDIR, *paths) + return _join(RANGERDIR, *paths) + +# Clean up +del environ, OpenStruct, argv diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py index d3c05023..b61d5a5a 100644 --- a/ranger/defaults/commands.py +++ b/ranger/defaults/commands.py @@ -308,8 +308,6 @@ class set(Command): def tab(self): line = parse(self.line) - from ranger import log - log(line.parse_setting_line()) name, value, name_done = line.parse_setting_line() settings = self.fm.settings if not name: '>305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349