Ashish Patil

Results 11 comments of Ashish Patil

@Hiren879 This was my first time working on Android, so I may not be the best adviser, but I (and know at least couple more experienced Android folks) used [Android...

I got a `TypeError: a bytes-like object is required, not 'str'` in line 73 of process.py `if 'ContentNotFoundError' in error_message:` on Python3.5 Changing to [`if 'ContentNotFoundError' in str(error_message):`](https://github.com/ashishnitinpatil/django-wkhtmltopdf/commit/407f78c218007eb5b90b075b92757dc66d6aca6b) solved the...

I tried disabling "Apply Chrome's built-in memory-saving when suspending" but it doesn't resolve the issue completely. Just the newly suspended tabs work as intended after that, but this can be...

[Mark Steward's solution](#issuecomment-208131722) worked perfectly for me for the case of adding a simple foreignkey column.

@BrokeRU This is the code (maybe old now) I was referring to in my [above comment](https://github.com/miguelgrinberg/Flask-Migrate/issues/61#issuecomment-337150857) - This is the file you are looking for [env.py](https://github.com/ashishnitinpatil/udacity_fsnd004_item_catalog_application/blob/master/migrations/env.py), however, this is the...

I had to do something hacky in order to resolve all issues & get the view to work correctly - ``` class CustomFilterView(AutocompleteJsonView): model_admin = MyAdmin # using my final...

https://github.com/spulec/freezegun/pull/531 I'm not sure where to add tests for this. Also, is the [reset](https://github.com/spulec/freezegun/issues/350#issuecomment-633154841) of `start` really required?

Created a PR for this - https://github.com/spulec/freezegun/pull/533 For the time being, to circumvent the issue, you could (if possible) simply add the argument `auto_tick_seconds=1` to your `freeze_time` call.