Missing dependencies for the quantum client

Bug #1051507 reported by Gary Kotton
8
This bug affects 1 person
Affects Status Importance Assigned to Milestone
neutron
Won't Fix
Undecided
Unassigned

Bug Description

This is on fedora 17

[root@(none) ~]# quantum net-list
which: no gedit in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
which: no kate in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
which: no vim in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
which: no emacs in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)

[root@(none) ~]#

After installing vim and gedit the warnings are removed

Revision history for this message
dan wendlandt (danwent) wrote :

Is there a fedora bug we should be linking this to?

at a glance, i'm pretty confused as to why the CLI is trying to open a system editor. I'd be curious to understand that better.

Revision history for this message
yong sheng gong (gongysh) wrote :

I am curious about it too

Revision history for this message
Aaron Rosen (arosen) wrote :

It's from the library cmd2 that's imported. Ubuntu ships with gedit so it breaks before any of these errors are shown.

    editor = os.environ.get('EDITOR')
    if not editor:
        if sys.platform[:3] == 'win':
            editor = 'notepad'
        else:
            for editor in ['gedit', 'kate', 'vim', 'emacs', 'nano', 'pico']:
                if subprocess.Popen(['which', editor], stdout=subprocess.PIPE).communicate()[0]:
                    break

Revision history for this message
dan wendlandt (danwent) wrote :

marking as 'wont fix', as this is not a bug that can be fixed in the main quantum repo, as I understand it.

Changed in quantum:
status: New → Won't Fix
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.