diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-07-20 23:36:21 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-07-20 23:36:21 +0200 |
commit | 351f3738656899afa625ef3bdf640aeeacae00ff (patch) | |
tree | a71db6713b8fea2bf8c0ef0fd95fc19692d2719a /youtube_dl | |
parent | 72e785f36ad215d48915b9207c403c5ce54cc9da (diff) |
[swfinterp] Fix _u32 name
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/swfinterp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/swfinterp.py b/youtube_dl/swfinterp.py index 87ec7bcff..a6f4ba6e0 100644 --- a/youtube_dl/swfinterp.py +++ b/youtube_dl/swfinterp.py @@ -111,7 +111,7 @@ def _u30(reader): res = _read_int(reader) assert res & 0xf0000000 == 0 return res -u32 = _read_int +_u32 = _read_int def _s32(reader): |