Skip to content

Commit

Permalink
quick bug fix for .values and .values_list
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyalmarza committed Aug 19, 2016
1 parent 87ce519 commit fded931
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 anthonyalmarza
Copyright (c) 2016 anthonyalmarza

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion timeseries/__init__.py
@@ -1 +1 @@
__version__ = '1.0.1'
__version__ = '1.0.2'
3 changes: 2 additions & 1 deletion timeseries/utils.py
Expand Up @@ -99,7 +99,8 @@ def __iter__(self):
yield res
else:
for res in super_iter:
self.parse_latest(res)
if isinstance(res, self.model):
self.parse_latest(res)
yield res

def last_updated(self, related_name):
Expand Down

0 comments on commit fded931

Please sign in to comment.