Skip to content

Commit

Permalink
more require fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shearn89 committed Oct 9, 2011
1 parent be87abc commit 8486bb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions main.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'rubygems'
require 'sinatra'
require 'mysql'
require 'sequel'

# set :database => 'mysql://appathon:appathon@appathon.cdmwtnbgpare.eu-west-1.rds.amazonaws.com:3306/appathon'
Expand Down
2 changes: 1 addition & 1 deletion utmToLatLong.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ def utmToLatLng(zone, easting, northing, northernHemisphere=True):
if __name__ == "__main__":
print float(sys.argv[2])
print float(sys.argv[3])
print utmToLatLng(sys.argv[1], float(sys.argv[2]), float(sys.argv[3]))
print utmToLatLng(float(sys.argv[1]), float(sys.argv[2]), float(sys.argv[3]))

0 comments on commit 8486bb0

Please sign in to comment.