Skip to content

Commit 3b4f1af

Browse files
committedMar 13, 2012
add *.pyc to .gitignore, rename non-alphabet easyblocks subdirs
1 parent 4304693 commit 3b4f1af

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.pydevproject
22
.project
33
LICENSE_HEADER
4+
*.pyc
File renamed without changes.
File renamed without changes.

‎easybuild/scripts/easyblocks_setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
pkg_resources.declare_namespace("%s")
4545
""" % os.path.basename(PREFIX))
4646

47-
# create subdirectories Aa, Bb, ..., Zz, 09, _-
47+
# create subdirectories Aa, Bb, ..., Zz, 0-9, _other_
4848
def createDir(dirName):
4949
os.mkdir(os.path.join(PREFIX, dirName))
5050
fh = open(os.path.join(PREFIX, dirName, "__init__.py"), 'w')
@@ -54,5 +54,5 @@ def createDir(dirName):
5454
for letter in alphabet:
5555
createDir(letter)
5656

57-
createDir("09")
58-
createDir("_-")
57+
createDir("0-9")
58+
createDir("_other_")

0 commit comments

Comments
 (0)
Please sign in to comment.