Browse Source

Removed syntax error.

tags/0.6.0
shypike 16 years ago
parent
commit
1520381aa2
  1. 2
      main/package.py

2
main/package.py

@ -482,7 +482,7 @@ else:
front, ext = os.path.splitext(file)
base = os.path.basename(file)
fullname = os.path.normpath(os.path.abspath(dest + '/' + base))
if (ext.lower() not in ('.pyc', '.pyo', '.bak')) and '~' not in ext):
if (ext.lower() not in ('.pyc', '.pyo', '.bak')) and '~' not in ext:
shutil.copy2(file, dest)
Dos2Unix(fullname)

Loading…
Cancel
Save