Skip to content

Commit

Permalink
Merge edc615a into b17b7b2
Browse files Browse the repository at this point in the history
  • Loading branch information
dchoruzy committed Jul 27, 2015
2 parents b17b7b2 + edc615a commit 34324ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_seed/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def uuid(self):

def rand_small_int(self, pos=False):
if pos:
return random.randint(0, 65535)
return random.randint(-65535, 65535)
return random.randint(0, 32767)
return random.randint(-32768, 32767)

def rand_int(self, pos=False):
if pos:
Expand Down

0 comments on commit 34324ae

Please sign in to comment.