Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
finesse
pykat
Commits
1149af0c
Commit
1149af0c
authored
Feb 07, 2015
by
Daniel Brown
Browse files
fixing float cast
parent
ef24efa2
Changes
1
Hide whitespace changes
Inline
Side-by-side
pykat/tools/redmine.py
View file @
1149af0c
...
...
@@ -97,7 +97,7 @@ def readFinesseDownloadData(data_filename, unique=True, geo_filename=None):
with
open
(
geo_filename
,
"r"
)
as
data
:
for
line
in
data
:
split
=
line
.
split
()
IPGeo
[
split
[
0
]]
=
(
split
[
1
],
split
[
2
])
IPGeo
[
split
[
0
]]
=
(
float
(
split
[
1
]
)
,
float
(
split
[
2
])
)
return
files
,
IPGeo
else
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment