[avbin commit] r42 - trunk/upload

0 views
Skip to first unread message

codesite...@google.com

unread,
Jun 8, 2008, 9:16:09 PM6/8/08
to avbin-...@googlegroups.com
Author: Alex.Holkner
Date: Sun Jun 8 18:08:40 2008
New Revision: 42

Modified:
trunk/upload/upload.py

Log:
Fix version check in upload script

Modified: trunk/upload/upload.py
==============================================================================
--- trunk/upload/upload.py (original)
+++ trunk/upload/upload.py Sun Jun 8 18:08:40 2008
@@ -27,7 +27,7 @@
for filename in os.listdir(dist):
if not os.path.isfile(os.path.join(dist, filename)):
continue
- if version not in filename:
+ if '-%s.' % version not in filename:
continue
for prefix in descriptions:
if filename.startswith(prefix):

Reply all
Reply to author
Forward
0 new messages