Skip to content

Commit

Permalink
Issue 28: Minor modification to field name finder to ensure it gather…
Browse files Browse the repository at this point in the history
…s the full field name for analysis.
  • Loading branch information
coddingtonbear committed Jul 28, 2015
1 parent 5df9954 commit 79e3ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jirafs/jirafieldmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_fields_from_string(self, string):
if value: # If so, we just need to store previous loop data
self.set_data_value(data, field_name, value)
value = ''
raw_field_name = re.match('^\* +(.*?)(\(.*?\)):$', line).group(1)
raw_field_name = re.match('^\* (.*\(.*?\)):$', line).group(1)
if '(' in raw_field_name:
# This field name's real name doesn't match the field ID
match = re.match(
Expand Down

0 comments on commit 79e3ac6

Please sign in to comment.