diff options
author | Sebastian Parborg <darkdefende@gmail.com> | 2011-06-26 16:20:04 +0200 |
---|---|---|
committer | Sebastian Parborg <darkdefende@gmail.com> | 2011-06-26 16:20:04 +0200 |
commit | 750cfcff50a978fa873be40ede8da2e950829501 (patch) | |
tree | 48ba24f55e278efcfeca25bdd25a23136354f097 | |
parent | Got it to generate a very simple ebuild for uzbl (diff) | |
download | ebuildgen-750cfcff50a978fa873be40ede8da2e950829501.tar.gz ebuildgen-750cfcff50a978fa873be40ede8da2e950829501.tar.bz2 ebuildgen-750cfcff50a978fa873be40ede8da2e950829501.zip |
fixed typo
-rw-r--r-- | scanfiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scanfiles.py b/scanfiles.py index 6ed6a80..6b72ce0 100644 --- a/scanfiles.py +++ b/scanfiles.py @@ -68,7 +68,7 @@ def scanproject(dir,projecttype): if projecttype == "guess": filestolookfor = ["Makefile","makefile"] #add more later elif projecttype == "makefile": - filestolookfor = ["Makefile","makeifle"] + filestolookfor = ["Makefile","makefile"] mfile = scandirfor(dir, filestolookfor)[0] #use first file found print(mfile) |