Skip to content

Commit fe76bfa

Browse files
committed
Fixing the version on configure.ac
2 parents 3c33e50 + 7babb45 commit fe76bfa

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2008-07-24 Lincoln de Sousa <[email protected]>
2+
3+
Bug #57 - Problems when listing $PATH directories.
4+
5+
* src/guake.py (PrefsDialog.populate_shell_combo): Last commit
6+
fixed just a part of the whole problem, if the user has something
7+
in the $PATH different of a directory the problem was raising
8+
again.
9+
110
2008-07-22 Gabriel Falcão <[email protected]>
211

312
* data/guake.1: Fixing a typo in manpage: from --hide to --help

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1717
# Boston, MA 02111-1307, USA.
1818

19-
AC_INIT([guake], [0.3], [http://trac.guake-terminal.org/])
19+
AC_INIT([guake], [0.3.1], [http://trac.guake-terminal.org/])
2020

2121
AC_CONFIG_HEADERS([config.h])
2222

src/guake.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def populate_shell_combo(self):
305305
cb.append_text(possible)
306306

307307
for i in os.environ.get('PATH', '').split(os.pathsep):
308-
if os.path.exists(i):
308+
if os.path.isdir(i):
309309
for j in os.listdir(i):
310310
if PYTHONS.match(j):
311311
cb.append_text(os.path.join(i, j))

0 commit comments

Comments
 (0)