Fix args.coordfiles -> args.placefiles in maplabel.py.
authorW. Trevor King <wking@drexel.edu>
Sat, 3 Mar 2012 17:39:33 +0000 (12:39 -0500)
committerW. Trevor King <wking@drexel.edu>
Sat, 3 Mar 2012 17:39:33 +0000 (12:39 -0500)
I'm not sure how I missed this when I wrote the original script.

posts/geoscript/maplabel.py

index 39b5d69cd79735f7c6022cfe6c0be227507cafef..f0f45d8e1ce1d5d30e007ff7be421cd50ea626e1 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011  W. Trevor King
+# Copyright (C) 2011-2012  W. Trevor King
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation, either version 3 of the License, or
@@ -83,7 +83,7 @@ if __name__ == '__main__':
 
     _pylab.hold(True)
 
-    for filename in args.coordfiles:
+    for filename in args.placefiles:
         points = list(resolve_points(open(filename, 'r').readlines()))
         plot_points(points)