Skip to content

Commit

Permalink
You should use a for loop here
Browse files Browse the repository at this point in the history
  • Loading branch information
lericson committed May 1, 2011
1 parent 2daf60f commit 9e9b865
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spritecss/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def print_config(fname):

def main():
import sys
map(print_config, sys.argv[1:])
for fn in sys.argv[1:]:
print_config(fn)

if __name__ == "__main__":
main()

0 comments on commit 9e9b865

Please sign in to comment.